@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --black: #293d40;
    --white: #ffffff;
    --orange: #f2a516;
    --animation: all 0.3s linear;
    --red:#f22e2e;
    --light-grey:#f9f9f9;
}
.form-floating>.form-control, .form-floating>.form-control-plaintext, .form-floating>.form-select {
    padding: 5px 13px;
    height: 50px;
    min-height: 50px;
    font-size: 14px;
    padding-top: 19px !important;
}
.form-floating>label{
    padding: 13px;
    font-size: 14px;
}
.form-control:focus {
    border-color: #f9a61f61;
    box-shadow: 0 0 0 0.25rem rgb(253 191 20 / 21%);
}
.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}
.form-check-input:focus {
    border-color: #f9a61f61;
    box-shadow: 0 0 0 0.25rem rgb(253 191 20 / 21%);
}
.animate{
    -webkit-transition: all 0.3s linear;-moz-transition: all 0.3s linear;-o-transition: all 0.3s linear;transition: all 0.3s linear;
}

body{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
.login-container{
    display: flex;
    height: 100vh;
}
.login-left{
    width: 65%;
    background: url("../images/login-bg.jpg") no-repeat;
    background-size: cover;
    height: 100%;
}
.login-right{
    width: 35%;
    height: 100%;
    margin: 0 auto;
}
.login-links{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
}
.login-links a{
    color: var(--black);
    text-decoration: none;
    transition: var(--animation);
}
.login-links a:hover{
    color: var(--orange);
    text-decoration: none;
}
.login-detail{
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 61px);
}
.login-box{
    max-width: 375px;
}
.logo-box{
    text-align: center;
    margin-bottom: 30px;
}
.logo-box img{
    text-align: center;
    max-width: 100%;
}
.login-box h2{
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    margin: 0px 0px 10px 0px;
}
.login-box .form-floating .login-icon-left{
    position: absolute;
    left: 10px;
    top: 14px;
}
.login-box .form-floating{
    margin-bottom: 10px;
}
.login-box .form-floating .form-control{
    padding: 5px 32px;
}
.login-box .form-floating>label{
    padding: 13px 32px;
}
.login-box .form-floating>label:after{
    inset:inherit !important;
}
.login-icon-right{
    position: absolute;
    right: 8px;
    top: 0px;
    cursor: pointer;
    width: 20px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-login-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.check-login-box a{
    color: var(--red);
}
.login-btn{
    width: 100%;
    text-align: center;
    padding: 8px 20px;
    color: var(--black);
    background: rgb(242,165,22);
    background: linear-gradient(107deg, rgba(242,165,22,1) 55%, rgba(242,102,39,1) 100%);
    border: 0px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0px;
    transition: var(--animation);
}
.create-account-link{
    text-align: center;
}
.create-account-link a{
    color: var(--red);
    font-size: 16px;
}
.eye-close{
    display: none;
}
.fa-eye-slash .eye-close{
    display: block;
}
.fa-eye-slash .eye-open{
    display: none;
}


@media(max-width:1023px){
    .login-left{display: none;}
    .login-right{width: 100%;}
    .login-box{max-width: 100%;}
    .login-container {        background: var(--light-grey);    }
}