/* SubWeb Assistant – Subscribe Form Styles */
.swa-subscribe-wrapper {
    max-width: 520px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}
.swa-subscribe-title {
    margin: 0 0 .4em;
    font-size: 1.4em;
    font-weight: 700;
    color: #1a202c;
}
.swa-subscribe-description {
    margin: 0 0 1.2em;
    color: #4a5568;
    font-size: .95em;
    line-height: 1.5;
}
.swa-subscribe-form .swa-field-group {
    margin-bottom: .8em;
}
.swa-subscribe-form .swa-field-row {
    display: flex;
    gap: .5em;
}
.swa-subscribe-form .swa-input {
    flex: 1;
    width: 100%;
    padding: .65em 1em;
    border: 1.5px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1em;
    color: #2d3748;
    background: #f7fafc;
    transition: border-color .2s;
    box-sizing: border-box;
}
.swa-subscribe-form .swa-input:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
}
.swa-subscribe-btn {
    padding: .65em 1.4em;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .1s;
}
.swa-subscribe-btn:hover:not(:disabled) {
    background: #5a67d8;
}
.swa-subscribe-btn:active:not(:disabled) {
    transform: scale(.97);
}
.swa-subscribe-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
}
.swa-subscribe-message {
    margin-top: .6em;
    padding: .6em 1em;
    border-radius: 6px;
    font-size: .9em;
}
.swa-subscribe-message.swa-error {
    background: #fff5f5;
    border: 1px solid #fc8181;
    color: #c53030;
}
.swa-subscribe-success {
    color: #276749;
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    padding: .8em 1em;
    border-radius: 6px;
    font-weight: 500;
    margin: 0;
}
.swa-subscribe-privacy {
    margin: .8em 0 0;
    font-size: .8em;
    color: #a0aec0;
    text-align: center;
}
@media (max-width: 480px) {
    .swa-subscribe-form .swa-field-row {
        flex-direction: column;
    }
}

/* [swa_subscribe_form] styles */
.swa-subscribe-form-wrap{max-width:480px;margin:2em auto;padding:2em;background:#fff;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,.08)}
.swa-form-title{margin:0 0 1.2em;font-size:1.3em;font-weight:600}
.swa-form-row{margin-bottom:1em}
.swa-form-group{display:flex;flex-direction:column}
.swa-form-group label{margin-bottom:.3em;font-size:.9em;font-weight:500}
.swa-form-group input{padding:.6em .8em;border:1px solid #ccc;border-radius:4px;font-size:1em}
.swa-btn{display:inline-block;padding:.7em 1.5em;border:none;border-radius:4px;cursor:pointer;font-size:1em;font-weight:600}
.swa-btn-subscribe{background:#0073aa;color:#fff;width:100%;margin-top:.5em}
.swa-btn-subscribe:hover{background:#005a87}
.swa-form-message{margin-top:1em;padding:.6em;border-radius:4px;font-size:.95em}
.swa-form-message.success{background:#e8f5e9;color:#2e7d32}
.swa-form-message.error{background:#fdecea;color:#c62828}
