/* =========================
   Forgot Password Modal
========================= */

.forgot-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

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

    opacity: 0;
    visibility: hidden;

    transition: all 0.25s ease;
}

.forgot-modal.show {
    opacity: 1;
    visibility: visible;
}

.forgot-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.forgot-modal__content {
    position: relative;
    width: calc(100% - 30px);
    max-width: 420px;

    background: #fff;
    border-radius: 16px;

    padding: 28px 24px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.18);

    animation: modalFadeIn 0.25s ease;
}

.forgot-modal__title {
    font-size: 22px;
    font-weight: 700;
    color: #333;

    margin-bottom: 14px;
}

.forgot-modal__text {
    font-size: 15px;
    color: #666;

    margin-bottom: 12px;
}

.forgot-modal__phone {
    display: inline-block;

    font-size: 28px;
    font-weight: 700;

    color: #c96;
    text-decoration: none;

    margin-bottom: 24px;
}

.forgot-modal__phone:hover {
    color: #b85;
    text-decoration: underline;
}

.forgot-modal__actions {
    display: flex;
    gap: 12px;
}

.forgot-modal__actions button,
.forgot-modal__actions a {
    flex: 1;

    height: 46px;

    border-radius: 10px;

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

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.2s ease;
}

.btn-cancel {
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    cursor: pointer;
}

.btn-cancel:hover {
    background: #f5f5f5;
}

.btn-call {
    background: #c96;
    color: #fff;
    border: none;
}

.btn-call:hover {
    background: #b85;
    color: #fff;
}

@keyframes modalFadeIn {
    from {
        transform: translateY(12px);
        opacity: 0;
    }

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

/* Mobile */
@media (max-width: 480px) {
    .forgot-modal__content {
        padding: 24px 18px;
    }

    .forgot-modal__title {
        font-size: 20px;
    }

    .forgot-modal__phone {
        font-size: 24px;
    }
}