body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('immagini/bcg11.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-container {
    width: 512px; /* Ridotto alla metà della dimensione originale */
    height: 384px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin-top: 100px; /* Spazio per il logo */
}
.login-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    z-index: 2;
}
.login-form {
    width: 100%;
    height: 100%;
    padding: 15px;
    <!--background: url('immagini/italy.jpg') no-repeat center center;-->
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: purple;
}

.form-group {
    width: 80%; 
    margin-bottom: 13px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    font-size: 15px;
}

button {
    width: 80%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
}
.logo {
    width: 175px; /* Puoi modificare queste dimensioni a piacere */
    height: auto; /* Mantiene il rapporto d'aspetto originale dell'immagine */
    display: block;
    margin: 0 auto; /* Per centrare l'immagine orizzontalmente */
}

button:hover {
    background-color: #0056b3;
}
