body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.fullscreen-container {
    background-image: url(../assets/img/img-back.png);
    height: 100vh; 
    width: 100vw;  
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-content {
    color: white;
    width: 95vw;
    height: 95vh;
    display: flex;
    flex-direction: row;
    position: relative;
    
}

.login-content{
    /* border: 2px solid red; */
    height: inherit;
    width: 45vw;   
    min-width: 30vw;
    background-color: rgb(223, 223, 223);
}




.language-button{
    width: fit-content;
    height: fit-content;
    margin-right: 20px;
    padding: 10;
    color: rgba(0, 0, 255, 0.568);
    background-color: rgba(180, 175, 175, 0.795);
    border-radius: 5px;
}

.language-button:hover{
    background-color: darkgray;
    cursor: pointer;
}

.language-button-container{
    margin-top: 10px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: end;
    align-items: center;
}

.logo-container{
    width: 100%;
    height: 20%;
    align-items: center ;
    display: flex;
}

.logo{
    background-image: url(../assets/img/logo-login.png);
    width: 50%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    }

    .login-text{
        height: 10%;
        color: rgba(0, 0, 255, 0.692);
        width: 100%;
        text-align: center;
        align-items: center;
        font-size: 25px;
        
        
    }

    .login-boxes {
        width: 100%;
        height: 20vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .input-box {
        width: 90%;
        display: flex;
        margin-bottom: 20px;
        align-items: center;
    }

    .input-box i {
        margin-right: 10px;
        color: #555;
        color: rgba(0, 0, 255, 0.692); 
        margin-left: 10px; 
        position: absolute;
    }

    .input-box input {
        flex: 1;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        padding-left: 30px;
    }

    .forget-remember {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px;
    }

    .remember-box{
        flex: 1;
        color: #555;
    }
    .forgot-password-box {
        flex: 1;
        text-align: end;
    }

    .remember-box input {
        margin-right: 5px;
    }

    .forgot-password-link {
        color: rgba(0, 0, 255, 0.692);
        text-decoration: underline;
    }

    .login-button {
        
        width: 90%;
        padding: 10px;
        background-color: rgba(0, 0, 255, 0.692);
        color: white;
        text-align: center;
        cursor: pointer;
    }

    .login-button:hover {
        background-color: darkblue;
    }

    .login-button-container{
        width: 100%;
        height: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .information-content {
        width: 100vw;
        opacity: 0.5;
        background-color: black;
        display: flex;
        flex-direction: row;
        
    }

    .information-first-half {
        width: 70%;
        height: 100%;
        background-color: black;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-weight: bold;
        opacity: 1;
        
        
    }

    .information-second-half {
        width: 30%;
        height: 10%;
        background-color: black;
        display: flex;
        justify-content: space-around;
        justify-content: center;
        align-items: center;
        
        margin-inline: auto;
    }

    .top-left-text{
        color: rgba(255, 255, 255, 1);
        font-size: 30px;
        margin-right: 10px;
        padding: 40;
        font-weight: bold;
        

    }
    .bottom-left-text{
        color: rgba(255, 255, 255, 1);
        font-size: 30px;
        margin-right: 10px;
        padding: 30;
        font-weight: bold;
        
    }
    .new-account-text {
        color: white;
        font-size: 16px;
        opacity: 1;
        margin-right: 10px;
        
    }

    .register-button {
        padding: 10px 20px;
        background-color: transparent;
        color: white;
        border: 2px solid white;
        cursor: pointer;
        margin-right: 20px;
        
    }

    .register-button:hover {
        background-color: white;
        color: black;
    }

    .password-strength-tooltip {
        background-color: #333;
        color: white;
        border-radius: 5px;
        width: 80%;
    }

    #passwordStrengthTooltip {
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .bottom-text-container{
        width: 100%;
        height: 20%;
        display: flex;
        flex-direction: column;
        margin-right: 10px;
        margin-right: 20px;
    }

.bottom-left-text-small{
    display: flex;
    margin-left: 30px;
    font-size: 16px;
    color: white;
}
    

.input_form{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
    

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    z-index: 1000;
}

/* Loading Spinner */
.loading-spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue color for the spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px; /* Half of the height */
    margin-left: -25px; /* Half of the width */
}

/* Animation for the spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.language-button-container {
    margin-top: 10px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
}

/* Style the select element */
.language-button-container select {
    padding: 10px;
    color: rgba(0, 0, 255, 0.568);
    background-color: rgba(180, 175, 175, 0.795);
    border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}

/* Hover styles for the select element */
.language-button-container select:hover {
    background-color: darkgray;
}


