/* style.css per login e dashboard */
body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #4ca1af, #000000); /* blu oltremare chiaro sfumato */
    min-height: 100vh;
	width:1900;
}

/* LOGIN */

.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
    width: 320px;
}
.login-container .logo {
    max-width: 150px;
    margin-bottom: 10px;
}
.login-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.login-container button {
    width: 100%;
    padding: 10px;
    background: #0077b6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
.login-container button:hover {
    background: #005f8a;
}

/* DASHBOARD */
.dashboard-body header {
    background: #0077b6; /* blu oltremare */
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 1.4em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.dashboard-body .welcome {
    margin: 20px 0;
    text-align: center;
    color: #fff;
    font-size: 1.1em;
}

.dashboard-body .menu {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 25px;
    max-width: 900px;
    margin: 30px auto;
}

.dashboard-body .menu-item {
    background: white;
    border-radius: 12px;
    padding: 30px 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dashboard-body .menu-item i {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #0077b6;
}

.dashboard-body .menu-item span {
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
}

.dashboard-body .menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

.dashboard-body .menu-item.logout i {
    color: #e74c3c;
}

.dashboard-body footer {
    margin-top: 40px;
    color: #fff;
    font-size: 0.9em;
    text-align: center;
    padding-bottom: 20px;
}