/* Impostazioni generali */
body {
    background-color: #121212; /* Sfondo scuro */
    color: #E0E0E0; /* Testo chiaro */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #1F1F1F; /* Sfondo scuro per il contenitore principale */
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h2 {
    color: #BB86FC; /* Colore degli headers */
}

h3 {
    color: #BB86FC; /* Colore dei sottotitoli */
}

p {
    margin: 10px 0;
}

/* Campi di input */
input[type="date"], input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: #2C2C2C;
    border: 1px solid #BB86FC;
    border-radius: 4px;
    color: #E0E0E0;
}

/* Etichette */
label {
    font-weight: bold;
    color: #BB86FC;
}

/* Stile pulsante generale */
button {
    background-color: #BB86FC;
    color: #121212;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #3700B3;
}

/* Stile per i link come pulsanti */
.button-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.button-column a, .button-return {
    display: inline-block;
    width: 100%;
    max-width: 200px;
    margin: 10px 0;
    padding: 10px;
    text-align: center;
    background-color: #BB86FC;
    color: #121212;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button-column a:hover, .button-return:hover {
    background-color: #3700B3;
}

/* Stile specifico per il pulsante di ritorno alla dashboard */
.button-return {
    background-color: #03DAC5;
    color: #121212;
}