/* =============================================
   Divi Subscriber Addon – Frontend Styles
   ============================================= */

.dsa-form-wrapper {
    box-sizing: border-box;
    max-width: 480px;
    margin: 0 auto;
    font-family: inherit;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.dsa-titulo {
    margin: 0 0 8px;
    font-weight: 700;
    line-height: 1.2;
}

.dsa-descripcion {
    margin: 0 0 20px;
    line-height: 1.6;
}

.dsa-field {
    margin-bottom: 14px;
}

.dsa-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.dsa-input:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 3px rgba(33,150,243,.15);
}

.dsa-btn {
    width: 100%;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: .3px;
    transition: background .2s, transform .1s, box-shadow .2s;
    display: block;
    margin-top: 4px;
}

.dsa-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.dsa-btn:active {
    transform: translateY(0);
}

.dsa-btn.loading {
    opacity: .75;
    cursor: wait;
}

/* Mensajes de respuesta */
.dsa-notice {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.dsa-notice.success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #43a047;
}

.dsa-notice.error {
    background: #fce4ec;
    color: #c62828;
    border-left: 4px solid #e53935;
}
