/* 비밀번호 찾기 페이지 전용 스타일 */

/* 설명 섹션 */
.description-section {
    margin-bottom: 24px;
}

.description-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #141428;
    line-height: 20px;
    letter-spacing: -0.32px;
    margin: 0;
}

/* 이메일 필드 */
.email-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.email-field input {
    flex: 1;
}

.email-field button {
    white-space: nowrap;
    min-width: 77px;
    height: 56px;
    padding: 17px 16px;
    font-size: 14px;
    background: #141428;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-field button:hover {
    background: #1a1a3a;
    transform: translateY(-2px);
}

.email-field button:disabled {
    background: #666;
    cursor: not-allowed;
}

/* 인증 메시지 */
.verification-message {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #e64646;
    margin-top: 8px;
} 