﻿body {
    background: none; /* Rimuove l'immagine di sfondo */
    background-color: black;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 80%; /* Permette al contenitore di allargarsi fino all'80% della larghezza */
    white-space: normal; /* Permette ai testi lunghi di andare a capo */
    word-wrap: break-word; /* Evita che le parole lunghe escano dai bordi */
}

.toast {
    background-color: #222;
    color: #ddd;
    border: 1px solid #555;
}

.toast-body {
    color: #ddd;
    max-width: 100%; /* Assicura che il testo stia dentro il contenitore */
    word-break: break-word; /* Spezza le parole troppo lunghe */
}

.form-label {
    color: #ccc;
}

.form-control {
    background-color: #222;
    color: #fff;
    border: 1px solid #555;
}

.form-control::placeholder {
    color: #bbb;
}

.form-control:focus {
    background-color: #333;
    color: #fff;
    border-color: #888;
    box-shadow: 0 0 5px rgba(136, 136, 136, 0.5);
}

.btn-custom {
    background-color: #222;
    color: white;
    border: 1px solid #555;
    display: block;
    margin: 10px auto;
}

.btn-custom:hover {
    background-color: #333;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
