/* Stile generale della pagina */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Stile del contenitore principale */
.container {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* Stile dei titoli */
h2 {
    color: #333333;
    margin-bottom: 20px;
}

/* Stile dei paragrafi */
p {
    color: #666666;
}

/* Stile del form */
form {
    display: flex;
    flex-direction: column;
}

/* Stile delle etichette */
label {
    margin-bottom: 5px;
    text-align: left;
    color: #333333;
}

/* Stile degli input */
input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

/* Stile del checkbox */
input[type="checkbox"] {
    margin-right: 10px;
}

/* Stile del bottone */
button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Stile dei link */
a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
