/* style.css - Versione con Occhio Professionale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    margin-bottom: 25px;
    color: #4a90e2;
}

input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 10px;
    outline: none;
}

/* Contenitore Password */
.password-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    margin-bottom: 20px;
    padding-right: 45px; /* Spazio per l'occhio */
}

/* L'OCCHIO CLASSICO GRIGIO */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 12px; /* Allineato all'input */
    cursor: pointer;
    color: #999; /* Grigio classico */
    font-size: 1.1rem;
    user-select: none;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #333; /* Diventa nero al passaggio */
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    background-color: #357abd;
}

a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
}