body{
    font-family: apertura, sans-serif;
    font-style: normal;
    font-weight: 400;
}

#leftPane{
    background-color: #f09270;
    height: 100vh;
    background-image: url("/root_theme/img/back_login.jpg");
    background-size: cover;
    position: relative;
}

#rightPane{
    padding: 50px 100px !important;
    min-width: 450px;
    width: 35%;
    max-width: 650px;
    background-color: #242628;
    color: white;
}

div.overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f09270;
    opacity: 0.6;
    z-index: 0;
}

h1{
    font-weight: 600;
}

form, form > div.d-flex{
    height: 100%;
}

form label{
    font-weight: 600;
    margin-bottom: 5px;
}

form input.form-control, form input.form-control:focus{
    background-color: #2b2c2d;
    border: 3px solid #3c4046;
    color: white !important;
    outline: none;
    box-shadow: none;
    border-radius: 10px;

}

.customBtn{
    padding: 10px 60px !important;
    background-color: #34383c;
    border: 3px solid #393d43;
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

#remember_me{
    -webkit-appearance: none;
    border-radius: 50%;
    border: 2px solid #3c4046;
    background-color: #34383c;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    cursor: pointer;
}

#remember_me:focus{
    outline: none;
    box-shadow: none;
}

#remember_me:checked{
    background-color: #f09270;
}

.customOrange{
    color: #f09270;
}

.customOrange:hover{
    color: #f09270;
    text-decoration: none;
}

#logo{
    position: absolute;
    top: 50px;
    left: 125px;
    width: 150px;
}

#logo > img{
    width: 100%;
}

#mainTitle{
    color: white;
    position: absolute;
    top: 45vh;
    left: 125px;
    font-size: 65px;
}

.loginImage{
    position: absolute;
    top: 0;
}

.mt-30vh{
    margin-top: 30vh;
}

@media screen and (max-width: 740px) {
    #rightPane {
        padding: 25px 25px !important;
        padding-top: 125px !important;
        min-width: auto;
        width: auto;
    }

    #logo{
        top: 20px;
        left: 180%;
    }

    #mainTitle{
        display: none;
    }
}

