/* Website style */

body{
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex: row;
}

/* Left side */

.left{
    height: 100vh;
    background-color: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right side */

.sign-in-form{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;   
}

h2{
    text-align: center;
    font-weight: 700;
}

.forgot-password-text{
    text-decoration: none;
    color: black;
    font-weight: 700;
}

.sign-up-text{
    text-decoration: none;
    color: black;
    font-weight: 700;
}

input[type='checkbox']:checked{
    background-color: black;
    border-color: black;
}

.form-check-input:focus{
    border-color: #FF0000;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6);
}

.form-control:focus {
    border-color: #FF0000;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6);
}

.input-group:focus-within button#btn-password.btn.button-password {
    border-color: #FF0000;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6);
}

.glow-hub:hover{
    color:#FF0000;
    filter: drop-shadow(0 0 1px #FF0000);
}

button#btn-password {
    border: 1px solid #dee2e6;
    box-shadow: none;
}

.bi-eye-fill{
    font-size: 150%;
    color: black;
}

/* Media queries */

@media all and (width: 768px){

    .left{
        width: 100%;
    }

    .right{
        width: 60%;
        margin-left: 20%;
        margin-top: 2.5%;
    }

}

@media all and (max-width: 768px){
    
    @media all and (max-height: 800px){

        body{
            overflow-x: hidden;
            overflow-y: scroll;
        }

    }

    .left{
        height: 25%;
    }

    .logo{
        width: 50%;
    }

    .sign-in-form{
        max-height: 50vh;
        display: block;
        margin-top: 5%;
    }

}