/* 비밀번호 찾기 전용 스타일 */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 1rem;
    box-sizing: border-box;
}

.auth-container .card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    box-sizing: border-box;
}

.desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-footer a {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* 기존 forgot-password.css 맨 밑에 아래 스타일을 덮어씌우거나 추가해 주세요 */

.auth-footer-group {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border); /* 폼과 구분되도록 얇은 선 추가 */
    padding-top: 1.25rem;
}

.btn-back {
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    color: var(--primary); /* 호버 시 메인 테마 색상으로 변경 */
    text-decoration: underline;
    transform: translateX(-2px); /* 살짝 왼쪽으로 움직이는 센스 있는 효과 */
}
