* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* niente scrollbar */
}

body {
    font-family: 'Poppins', Helvetica, sans-serif;
    background-image: url("/images/loginBackground.png"); /* tua immagine */
    background-size: cover;        /* può essere tagliata */
    background-position: center;
    background-repeat: no-repeat;
}

.login-container {
    min-height: calc(100vh - 80px); /* altezza header */
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
    padding-left: 70vw;
}

/*#login-container {
    background-color: #f5f3ed;
    border-radius: 12px;
    width: 18vw;
    height: 44vh;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px; 
    margin: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }*/

.login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(245, 243, 237, 0.85);
    border-radius: 12px;
    width: 18vw;
    min-width: 300px;
    height: auto;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

input {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #2980b9;
}