/* RESET BASE */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Inter", sans-serif;
    background: #f5f7fb; /* sfondo chiaro */
    color: #333;
}

/* LOGIN PAGE */
.login-bg {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb); /* azzurro chiaro */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 380px;
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

.login-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.btn-login {
    height: 45px;
    border-radius: 8px;
    font-weight: 600;
    background: #1976d2;
    border: none;
}
.btn-login:hover {
    background: #0d47a1;
}

/* DASHBOARD */
nav.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-light {
    background: #ffffff;
    border-right: 1px solid #e0e0e0;
}

.sidebar-light .nav-link {
    color: #333;
    padding: 10px 15px;
    border-radius: 6px;
}

.sidebar-light .nav-link:hover {
    background: #e3f2fd;
}

.card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.progress {
    height: 10px;
    border-radius: 6px;
}

.progress-bar {
    background: #1976d2;
}
