/* ============================================================
   SENAC NEWSLETTER – Public Form Styles
   ============================================================ */

.snws-form-wrap {
    background: #fff;
    border: 1px solid #DDE3EE;
    border-radius: 10px;
    padding: 28px 32px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,63,138,.08);
}

.snws-form-title {
    font-size: 20px;
    color: #003F8A;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.3;
}

/* FIELDS */
.snws-field { margin-bottom: 16px; }
.snws-field label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 6px;
}
.snws-required { color: #C62828; margin-left: 2px; }
.snws-optional { color: #9CA3AF; font-weight: 400; font-size: 12px; }

.snws-subscribe-form input[type="text"],
.snws-subscribe-form input[type="email"],
.snws-subscribe-form select {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    background: #F9FAFB;
    color: #111827;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.snws-subscribe-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.snws-subscribe-form input:focus,
.snws-subscribe-form select:focus {
    outline: none;
    border-color: #003F8A;
    box-shadow: 0 0 0 3px rgba(0,63,138,.12);
    background: #fff;
}

/* SUBMIT BUTTON */
.snws-field--submit { margin-top: 20px; }
.snws-btn-submit {
    display: block;
    width: 100%;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #003F8A;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s, transform .1s;
    letter-spacing: .3px;
}
.snws-btn-submit:hover { background: #0056C1; }
.snws-btn-submit:active { transform: scale(.98); }
.snws-btn-submit:disabled { background: #9CA3AF; cursor: not-allowed; }

/* MESSAGES */
.snws-success-msg,
.snws-error-msg {
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}
.snws-success-msg { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.snws-error-msg   { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }

/* PRIVACY NOTE */
.snws-privacy-note {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}
