body {
    margin: 0;
    padding: 0;
    background-color: black;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.footer-title{
    color: white;
    font-size: 13px;
}

#loading-overlay{
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background-color:rgba(0, 0, 0, 0.5); 
    z-index:9999;
}

#loading-content{
    position:absolute; 
    top:50%; 
    left:50%; 
    transform:translate(-50%, -50%); 
    color:white;
    text-align: center;
}

#loading-content p{
    font-size: 20px;
    font-weight: bold;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #fff;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

.logo-container{
    margin-bottom: 15vh; 
    margin-top: 10vh;
}

.logo-container img{
    max-width: 100%; 
    height: auto;
}

.form-group label{
    margin-left: 8px; 
    color: black; 
    font-weight: bold;
}