.signup-container {
		width: 100%;
		max-width: 420px;
		margin: 5vh auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

    .containerjoin {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 500px;
        padding: 20px;
        margin: 5vh auto;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 35px;
        font-weight: 700;
        text-align: center;
        color: #000;
        letter-spacing: -0.5px;
    }

    .login-btn {
        background-color: #2b2b2b;
        color: white;
        width: 100%;
        height: 50px;
        padding: 0 16px;
        border: none;
        border-radius: 4px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-btn:hover {
        background-color: #000;
    }

    .divider {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0 30px;
        position: relative;
    }

    .divider::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: #e0e0e0;
    }

    .divider span {
        background: white;
        padding: 0 12px;
        position: relative;
        z-index: 1;
        color: #999;
        font-size: 12px;
    }

    .message {
        color: #666;
        font-size: 13px;
        margin-bottom: 15px;
        text-align: center;
    }

    .already-member {
        color: #666;
        font-size: 13px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .already-member a {
        color: #666;
        text-decoration: underline;
        margin-left: 5px;
    }

    .already-member a:hover {
        color: #000;
    }

    /* SNS 로그인 섹션 */
    .social-section {
        width: 100%;
    }

    /* SNS 로그인이 없을 때 전체 섹션 숨기기 */
    .social-section:has(.social-login:empty) {
        display: none;
    }

    .type-login {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 30px;
    }

    /* 회원 유형이 여러개일 때 (박스 선택형) */
    .type-login .login-btn {
        background-color: #fff;
        color: #000;
        border: 1px solid #e0e0e0;
        height: 50px;
        padding: 0 16px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .type-login .login-btn:hover {
        background-color: #f5f5f5;
        border-color: #d0d0d0;
    }

    /* 회원 유형이 1개일 때 (기본 검정 버튼) */
    .type-login .login-btn:only-child {
        background-color: #2b2b2b;
        color: white;
        border: none;
        height: 50px;
    }

    .type-login .login-btn:only-child:hover {
        background-color: #000;
    }

    /* 회원가입 유형 선택 화면의 소셜 섹션 기본 숨김 */
    #loginPage .social-section {
        display: none;
    }

    /* 회원가입 유형이 1개일 때만 소셜 섹션 표시 */
    #loginPage .type-login:has(.login-btn:only-child) ~ .social-section {
        display: block;
    }

    .btn-icon {
        margin-right: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }

    .btn-text {
        flex: 1;
        text-align: center;
        margin-right: 24px;
    }

    /* Signup Form Styles */
    .containerjoind {
        max-width: 420px;
        padding: 20px;
        display: none;
        margin: 5vh auto;
        width: 100%;
    }

    .containerjoind.active {
        display: block;
    }

    .containerjoind h1 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 12px;
        text-align: center;
        color: #000;
        letter-spacing: -0.5px;
    }

    .signup-subtitle {
        font-size: 13px;
        color: #999;
        text-align: center;
        margin-bottom: 35px;
        font-weight: 400;
    }

    .info-box {
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        padding: 20px;
        margin-bottom: 30px;
    }

    .info-title {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .divider-line {
        width: 100%;
        height: 1px;
        background-color: #e0e0e0;
        margin: 15px 0;
    }

    .info-text {
        color: #666;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .link-row {
        margin: 15px 0;
    }

    .link-button {
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }

    .link-row .link-button::after {
        content: "보기";
        color: #999;
        margin-left: 5px;
    }

    .form-title {
        font-size: 18px;
        font-weight: bold;
        margin: 30px 0 20px 0;
        padding-bottom: 10px;
        border-bottom: 1px solid #e0e0e0;
    }

    .form-group {
        margin-bottom: 18px;
        position: relative;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-size: 13px;
        font-weight: 500;
        color: #000;
    }

    .required::after {
        content: " *";
        color: #ff0000;
        margin-left: 2px;
    }

    .form-input {
        width: 100%;
        height: fit-content;
        padding: 10px 16px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        font-size: 13px;
        background-color: #fff;
        min-width: 0;
        box-sizing: border-box;
        transition: border-color 0.2s;
    }

    .form-input:focus {
        outline: none;
        border-color: #000;
    }

    .form-input::placeholder {
        color: #d0d0d0;
    }

    .email-input{
        width: 100%;
        max-width: 300px;
    }

    .select-group {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .email-input-group {
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: 10px;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .email-input {
        flex: 1;
        min-width: 0;
        border-radius: 5px;
    }

    .email-at {
        margin: 0;
        color: #666;
        font-weight: bold;
        flex: 0 0 auto;
        font-size: 14px;
    }

    .email-domain {
        flex: 1;
        min-width: 0;
        border-radius: 5px;
    }

    .domain-select {
        flex: 0 0 120px;
        padding: 10px 16px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        font-size: 14px;
        background-color: #fff;
        appearance: menulist;
        cursor: pointer;
        transition: border-color 0.2s;
    }

    .domain-select:focus {
        outline: none;
        border-color: #000;
    }

    select.form-input {
        cursor: pointer;
        appearance: menulist;
        width: 100%;
        padding: 10px 16px;
    }

    textarea.form-input {
        min-height: 100px;
        resize: vertical;
        font-family: inherit;
    }

    .password-toggle {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #999;
        font-size: 18px;
        user-select: none;
    }

    .password-field {
        position: relative;
    }

    .checkbox-label {
        display: flex;
        align-items: center;
        font-size: 13px;
        color: #333;
        cursor: pointer;
    }

    .checkbox-custom {
        width: 18px;
        height: 18px;
        border: 1px solid #d0d0d0;
        border-radius: 2px;
        margin-right: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        flex-shrink: 0;
    }

    input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        margin: 0;
        width: 18px;
        height: 18px;
        border: 1px solid #d0d0d0;
        border-radius: 2px;
        background-color: #fff;
        cursor: pointer;
        position: relative;
    }

    input[type="checkbox"]:checked {
        background-color: #000;
        border-color: #000;
    }

    input[type="checkbox"]:checked::after {
        content: "✓";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 12px;
        font-weight: bold;
    }

    input[type="checkbox"]:checked+.checkbox-custom {
        background-color: #000;
        border-color: #000;
    }

    input[type="checkbox"]:checked+.checkbox-custom::before {
        content: "✓";
        color: #fff;
        font-size: 12px;
        font-weight: bold;
    }

    /* 라디오 버튼 스타일 */
    input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border: 1px solid #d0d0d0;
        border-radius: 50%;
        margin: 0;
        margin-right: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        cursor: pointer;
        flex-shrink: 0;
        position: relative;
        vertical-align: middle;
    }

    input[type="radio"]:checked {
        border-color: #000;
    }

    input[type="radio"]:checked::before {
        content: "";
        width: 10px;
        height: 10px;
        background-color: #000;
        border-radius: 50%;
        position: absolute;
    }

    .radio-label {
        display: inline-flex;
        align-items: center;
        font-size: 13px;
        color: #333;
        cursor: pointer;
    }

    .verification-options {
        display: flex;
        margin-top: 10px;
        gap: 20px;
    }

    .verification-option {
        display: flex;
        align-items: center;
    }

    .error-message {
        color: #FF4D4D;
        font-size: 13px;
        margin-top: 5px;
        display: none;
        align-items: center;
    }

    .error-icon {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-right: 6px;
        flex-shrink: 0;
    }

    .error-icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .submit-button {
        display: block;
        width: 100%;
        height: 50px;
        padding: 0 16px;
        background-color: #2b2b2b;
        color: white;
        border: none;
        border-radius: 4px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 30px;
        transition: all 0.2s ease;
    }

    .submit-button:hover {
        background-color: #000;
    }

    .completion-page {
        display: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 500px;
        width: 100%;
        margin: 5vh auto;
        padding: 30px 20px;
    }

    .completion-page.active {
        display: flex;
    }

    .completion-title {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .check-icon-container {
        background-color: #000;
        width: 80px;
        height: 80px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .check-icon {
        width: 40px;
        height: 40px;
        color: #fff;
    }

    .completion-message {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .completion-name {
        font-weight: bold;
    }

    .info-box-gray {
        background-color: #f0f0f0;
        padding: 20px;
        border-radius: 6px;
        width: 100%;
        margin-bottom: 30px;
        color: #666;
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    .home-button {
        display: block;
        width: 100%;
        padding: 15px;
        background-color: #000;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 10px;
        text-align: center;
        text-decoration: none;
    }

    @media (max-width: 768px) {
		.signup-container {
			width: 100%;
			margin: 3vh auto;
			padding: 0 10px;
		}

        .containerjoind,
        .containerjoin {
            padding: 15px;
            width: 100%;
            max-width: 100%;
        }

        .email-input-group {
            flex-direction: column;
            align-items: stretch;
            gap: 15px;
        }

        .email-input {
            width: 100%;
            max-width: none;
        }

        .email-at {
            align-self: flex-start;
            margin: 0;
        }

        .domain-select,
        .email-domain {
            width: 100%;
            max-width: none;
            margin-top: 5px;
        }

        .verification-options {
            flex-direction: column;
            gap: 10px;
        }
    }