/* Email Subscription Popup Styling */
.authyo-cf7-email-subscription-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
}

.authyo-cf7-email-subscription-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.authyo-cf7-email-subscription-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.authyo-cf7-email-subscription-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.authyo-cf7-email-subscription-close:hover {
    background: #f1f5f9;
    color: #475569;
}

.authyo-cf7-email-subscription-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.authyo-cf7-email-subscription-description {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 32px;
}

.authyo-cf7-email-subscription-field {
    margin-bottom: 24px;
}

.authyo-cf7-email-subscription-field input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.authyo-cf7-email-subscription-field input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.authyo-cf7-email-subscription-actions {
    display: flex;
    gap: 12px;
}

.authyo-cf7-email-subscription-actions .button {
    flex: 1;
    height: 48px !important;
    line-height: 46px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.authyo-cf7-email-subscription-error {
    display: block;
    margin-top: 8px;
    color: #dc2626;
    font-size: 13px;
    text-align: left;
}

.authyo-cf7-email-subscription-success {
    margin-top: 24px;
    padding: 16px;
    background: #f0fdf4;
    border-radius: 8px;
    color: #166534;
    font-weight: 500;
}