/* 인증 페이지 스타일 */

.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-box {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.auth-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.auth-box h1 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* 소셜 로그인 */
.social-login {
    margin-bottom: 20px;
}

.kakao-login-btn {
    width: 100%;
    padding: 16px 20px;
    background-color: #FEE500;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.kakao-login-btn:hover {
    background-color: #FDDC3F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 229, 0, 0.4);
}

/* 구분선 */
.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #999;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.divider span {
    padding: 0 15px;
    font-size: 14px;
}

/* 폼 스타일 */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"] {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #5AABA5;
}

.form-help {
    font-size: 12px;
    color: #999;
}

.checkbox-group {
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.link-detail {
    margin-left: auto;
    font-size: 13px;
    color: #5AABA5;
    text-decoration: underline;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -10px;
}

.link {
    color: #5AABA5;
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #5AABA5 0%, #4A9A94 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 171, 165, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #666;
}

/* 반응형 */
@media (max-width: 768px) {
    .auth-box {
        padding: 30px 20px;
    }

    .auth-box h1 {
        font-size: 24px;
    }

    .auth-subtitle {
        font-size: 14px;
    }
}
