/* Body */

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

/* Left side - logo */

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

/* Right side */

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

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

.back-signin-text{
    text-decoration: none;
    color: black;
    font-weight: 700;
}

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

.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);
}

.input-group:focus-within button#btn-repassword.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);
}

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

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

/* Media Queries */

@media all and (max-width: 768px){
    
    body{
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .left{
        height: 25%;
    }

    .logo{
        width: 50%;
    }

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

}