/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary: #1e3a8a; /* Blu scuro professionale */
    --accent: #e11d48; /* Rosso Cuore Campania */
    --bg-light: #f3f4f6;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --radius-lg: 16px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Card Moderne */
.modern-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
}

/* Input Form Personalizzati */
.modern-input {
    border-radius: var(--radius-sm);
    padding: 0.8rem 1.2rem;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.modern-input:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

/* Pulsanti */
.btn-modern {
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background-color: #172554;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    color: #ffffff;
}

.btn-outline-modern {
    background-color: transparent;
    color: var(--primary);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* Utilities */
.text-primary-custom {
    color: var(--primary) !important;
}

.brand-logo {
    max-width: 100%;  /* Impedisce al logo di superare la larghezza dello schermo/contenitore */
    height: auto;     /* Mantiene le proporzioni corrette quando si restringe */
    max-height: 80px; /* Evita che diventi troppo grande su schermi grandi */
    object-fit: contain;
}