.cyber-email-capture-wrapper {
    max-width: 650px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cyber-email-form {
    width: 100%;
    margin-bottom: 12px;
}

.cyber-form-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 9999px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
}

.cyber-email-input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    color: #0d141a !important;
    outline: none !important;
    box-shadow: none !important;
}

.cyber-email-input::placeholder {
    color: #a495fd4;
}

.cyber-email-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #d14140;
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.cyber-email-submit:hover {
    background-color: #b83332;
}

/* Loading Spinner state */
.cyber-email-submit.loading .btn-text {
    visibility: hidden;
    opacity: 0;
}

.cyber-email-submit .btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: cyberSpin 0.6s linear infinite;
    position: absolute;
    left: calc(50% - 9px);
    top: calc(50% - 9px);
}

.cyber-email-submit.loading .btn-spinner {
    display: block;
}

@keyframes cyberSpin {
    to { transform: rotate(360deg); }
}

.cyber-privacy-note {
    font-size: 13px;
    color: #8b919a;
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

.cyber-privacy-link {
    color: #d14140 !important;
    text-decoration: none !important;
    font-weight: 500;
}

.cyber-privacy-link:hover {
    text-decoration: underline !important;
}

.cyber-message-container {
    display: none;
    margin-top: 12px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.cyber-message-container.success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.cyber-message-container.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .cyber-form-group {
        flex-direction: column;
        border-radius: 16px;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        gap: 10px;
    }
    .cyber-email-input {
        background: #ffffff !important;
        border-radius: 9999px !important;
        border: 1px solid #e2e8f0 !important;
        width: 100%;
    }
    .cyber-email-submit {
        width: 100%;
        border-radius: 9999px;
    }
}
