body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f4f7fa;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    width: 100%;
    padding: 20px 0 10px;
    display: flex;
    justify-content: center;
}

.logo-container img {
    max-height: 80px;
    height: auto;
    width: auto;
    max-width: 90%;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 90%;
}

h1 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* spazio tra i campi */
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 250px;
}

label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
}

input {
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.button {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .container {
        width: 95%;
    }
}
