/* =====================================================
비밀번호 재설정 설명
===================================================== */

.reset-description {
    text-align: center;
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* =====================================================
모달 배경
===================================================== */

.reset-modal-overlay {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.55);

    z-index: 99999;

    padding: 20px;

    box-sizing: border-box;

    animation: modalOverlayFadeIn 0.2s ease;
}

/* =====================================================
모달 창
===================================================== */

.reset-modal {
    position: relative;

    width: 100%;
    max-width: 360px;

    background: #ffffff;

    border-radius: 14px;

    padding: 35px 28px 28px;

    box-sizing: border-box;

    text-align: center;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);

    animation: modalFadeIn 0.25s ease;
}

/* =====================================================
X 버튼
===================================================== */

.reset-modal-close {
    position: absolute;

    top: 10px;
    right: 12px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;

    color: #888;

    font-size: 22px;

    cursor: pointer;

    border-radius: 50%;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.reset-modal-close:hover {
    background: #f1f1f1;
    color: #333;
}

.reset-modal-close i {
    pointer-events: none;
}

/* =====================================================
아이콘
===================================================== */

.reset-modal-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 15px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.success-icon {
    color: #2e7d32;
    background: #e0f4e5;
}

.error-icon {
    color: #c62828;
    background: #ffe5e5;
}

/* =====================================================
제목
===================================================== */

.reset-modal h3 {
    margin: 0 0 15px;

    color: #003b5c;

    font-size: 19px;

    font-weight: 600;
}

/* =====================================================
메인 메시지
===================================================== */

.reset-modal-message {
    margin: 0;

    color: #333;

    font-size: 14px;

    line-height: 1.7;
}

/* =====================================================
스팸메일 안내
===================================================== */

.reset-modal-help {
    margin: 12px 0 20px;

    color: #777;

    font-size: 12px;

    line-height: 1.6;
}

/* =====================================================
에러 메시지
===================================================== */

.error-message-text {
    color: #c62828;

    margin-bottom: 22px;
}

/* =====================================================
확인 버튼
===================================================== */

.reset-modal-confirm {
    width: 100%;

    border: none;

    border-radius: 6px;

    padding: 12px 15px;

    background: #4169e1;

    color: #fff;

    font-size: 14px;

    font-weight: 500;

    cursor: pointer;

    transition: background-color 0.2s ease;
}

.reset-modal-confirm:hover {
    background: #3151c7;
}

.error-confirm {
    background: #4169e1;
}

.error-confirm:hover {
    background: #3151c7;
}

/* =====================================================
애니메이션
===================================================== */

@keyframes modalOverlayFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =====================================================
모바일
===================================================== */

@media (max-width: 480px) {
    .reset-modal {
        max-width: 340px;

        padding: 32px 22px 24px;
    }

    .reset-modal h3 {
        font-size: 18px;
    }
}
