.ebr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(5px);
}

.ebr-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: ebrModalFade 0.3s ease;
}

@keyframes ebrModalFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ebr-modal-content h3 {
    margin: 0 0 15px;
    color: #333;
    font-size: 1.5em;
}

.ebr-modal-content p {
    margin: 0 0 20px;
    color: #666;
    font-size: 0.95em;
}

.ebr-modal-content input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 16px;
}

.ebr-modal-content .ebr-btn {
    width: 100%;
    padding: 15px !important;
    margin: 15px 0 8px;
    background: #5333ed !important;
    color: white !important;
    border: none;
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}
.ebr-modal-content .ebr-btn:hover {

     background-color: orange !important;
}

.ebr-resend {
    margin: 15px 0 10px;
    font-size: 0.9em;
    color: #666;
}

.ebr-link {
    background: none;
    border: none;
    color: #6fbd5b;
    font-size: 0.9em;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
}

.ebr-link:hover {
    color: #5aa34a;
}

.ebr-link:disabled {
    color: #aaa;
    cursor: not-allowed;
    text-decoration: none;
}