/* Email Subscription Popup Styles */
.authyo-mf-email-subscription-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.authyo-mf-email-subscription-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.authyo-mf-email-subscription-content {
    position: relative;
    width: 450px;
    max-width: 90%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 30px;
    animation: authyo-fade-in-up 0.4s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

@keyframes authyo-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.authyo-mf-email-subscription-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #a7aaad;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.authyo-mf-email-subscription-close:hover {
    color: #1d2327;
}

.authyo-mf-email-subscription-header h2 {
    margin: 0 0 15px;
    font-size: 22px;
    color: #1d2327;
    font-weight: 700;
    text-align: center;
}

.authyo-mf-email-subscription-description {
    font-size: 15px;
    color: #50575e;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.authyo-mf-email-subscription-field {
    margin-bottom: 20px;
}

.authyo-mf-email-subscription-field input[type="email"] {
    width: 100%;
    height: 48px;
    padding: 10px 15px;
    border: 1px solid #ccd0d4;
    border-radius: 6px;
    font-size: 16px;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.authyo-mf-email-subscription-field input[type="email"]:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.authyo-mf-email-subscription-error {
    color: #d63638;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.authyo-mf-email-subscription-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.authyo-mf-email-subscription-actions .button {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.authyo-mf-email-subscription-skip {
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    color: #50575e;
}

.authyo-mf-email-subscription-skip:hover {
    background: #f0f0f1;
    border-color: #c3c4c7;
    color: #1d2327;
}

.authyo-mf-email-subscription-submit {
    background: #2271b1;
    border: 1px solid #2271b1;
    color: #fff;
}

.authyo-mf-email-subscription-submit:hover {
    background: #135e96;
    border-color: #135e96;
    color: #fff;
}

.authyo-mf-email-subscription-footer {
    font-size: 12px;
    color: #a7aaad;
    text-align: center;
    margin: 0;
}

.authyo-mf-email-subscription-success {
    text-align: center;
    padding: 20px 0;
}

.authyo-mf-email-subscription-success p {
    font-size: 18px;
    font-weight: 600;
    color: #46b450;
    margin: 0;
}