body {
    display: flex;
    height: 100vh; /* Ensure body takes the full viewport height */
    margin: 0; /* Remove default margin */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background-color: #080710; 
}

form {
    height: auto;    
    width: 400px;
    background-color: rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(255, 7, 7, 0.6);
    padding: 10px 35px;
}

form * {
    color: #ffffff;
    letter-spacing: 0.5px;
}

label {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

input {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}

::placeholder {
    color: #e5e5e5;
}

button {
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

#alertePasLive{
    display: grid;
    z-index: 1;
    position: absolute;
    width: 50vw;
    height: 15vw;
    text-align: center;
    align-items: center;
    border: 2px solid black;
    background-color: rgba(255, 255, 255, 0.541);
    color: black;
    font-weight: bold;
    display: none;
}

.disappear {
    display:none;
  }

.spinner {
    position:absolute;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  


  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }