/**
 * css/custom/register.css
 * Stili per login e register
 * Coerente con checkout_odoo.css
 * 
 * @package ItticiSurgelati
 * @version 1.0.0
 */

/* ============================================
   VARIABILI
   ============================================ */

/* ============================================
   FIELDS SPECIFICI DELLA FORM REGISTER 
   ============================================ */




/* ============================================
   MESSAGGI ERRORE / SUCCESSO
   ============================================ */
.alert {
    padding: 12px 16px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
}

.alert-danger {
    background: #f8d7da !important;
    border-left: 4px solid #dc3545 !important;
    color: #721c24 !important;
}

.alert-success {
    background: #d4edda !important;
    border-left: 4px solid #28a745 !important;
    color: #155724 !important;
}

/* ============================================
   RESPONSIVE (coerente con checkout)
   ============================================ */
@media (max-width: 991px) {
    .s-log {
        padding: 24px !important;
    }
    
    .s-log .heading {
        font-size: 28px !important;
    }
    
    .form-control {
        font-size: 20px !important;
    }
    
    .form-label {
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .s-log {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 20px !important;
    }
    
    .s-log .heading {
        font-size: 24px !important;
    }
    
    .form-control {
        font-size: 18px !important;
    }
    
    .s-log .col-right {
        padding: 24px 16px !important;
    }
}