/**
 * 로그인 페이지
 */
.login-wrap {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.login-main-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 240px;
    width: 100%;
    height: auto;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 300px;
    max-width: 100%;
}

.login-button {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    gap: 16px;
}

/**
 * 회원가입 페이지
 */
.join-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
}

.join-main-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 240px;
    width: 100%;
    height: auto;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 300px;
    max-width: 100%;
}

.join-agree {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.join-agree .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.join-agree .form-check-label {
    flex: 1;
    margin-bottom: 0;
}

.join-agree .form-check a {
    color: var(--Primary-Base);
    text-decoration: underline;
    font-size: 0.875rem;
}

.join-button {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    gap: 16px;
}

/**
* 회원가입
*/

.join-wrap .btn-group.gender-group {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
}

.join-wrap .gender-group .btn {
    border: 0;
    border-radius: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.join-wrap .gender-group .btn.btn-outline-secondary:hover {
    background-color: white;
    color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.join-wrap .gender-group {
    background-color: white !important;
}

.join-wrap #gender_m:checked + label,
.join-wrap #gender_m:checked + label:hover {
    background-color: #0d6efd !important;
    color: #fff !important;
    border-color: #0d6efd !important;
}

.join-wrap #gender_f:checked + label,
.join-wrap #gender_f:checked + label:hover {
    background-color: #e83e8c !important;
    color: #fff !important;
    border-color: #e83e8c !important;
}

/* 2026-03-05 송주현 추가 css 작업 - 로그인 페이지 */
.id-pw-lost-link {
    display: flex;
    width: 300px;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 80px;
}

.id-pw-lost-link a {
    color: #7d90aa;
    font-size: 14px;
}
.id-pw-lost-link a:hover {
    text-decoration: underline;
}

.join-invite-friend-wrap {
    width: 300px;
    border-radius: 30px;
}
.join-invite-friend-wrap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
