
        @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
        body{padding: 0; margin: 0;  font-family: "Inter", sans-serif;}
       .main-bx {
    background-image: url(../images/bg.jpg);
    background-size: 100%;
    height: 100vh;
    padding: 80px 0 50px 0;
    margin: 0px;
    background-repeat: no-repeat;
    background-attachment: fixed;
   
}

.form-box{
    width: 70%;
    margin: auto;
    height: auto;
    border-radius: 20px;    
    overflow: hidden;
}
.form-logo {
    background: #f3f3f3b5;
    backdrop-filter: blur(3px);
    text-align: center;
    padding: 10px 0;
}
.form-header{
    background-color: #fff;
    color: #DA251D;
}
.form-header {
    background-color: #fff;
    color: #DA251D;
    text-align: center;
    text-transform: uppercase;
    padding: 14px 0;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #000000B2;
}
.form-center {    
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
.form-leftside {
    background: #DA251DB2;
    height: 420px;
    width: 50%;
    backdrop-filter: blur(6px);
    padding: 0 20px;
}
.form-rightside {
    background: #fff;    
    height: 420px;
    width: 50%;
}
.form-leftside h3{
    text-align: center;
    margin-top: 60px;
}
.form-leftside h3 a {
    text-decoration: none;
    color: #fff;
    background: #fff;
    display: inline-block;
    padding: 10px 30px;
    color: #DA251D;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 18px;
    transition: all 0.4s;
}
.form-leftside h3 a:hover{
    background-color: #DA251D;
    color: #fff;;
}
.form-leftside h4 {
    margin: 0px;
    padding: 10px 0 0 0;
    color: #fff;
    font-weight: 500;
}
.form-leftside ul {
    padding: 11px 0 0 27px;
    margin: 0px;
}
.form-leftside ul li {
    color: #fff;
    font-weight: 200;
    padding: 0 0 18px 0;
    font-size: 16px;
    line-height: 22px;
}
.form-rightside{
    padding: 0 20px;
}
input:focus-visible{
    outline-color: none;
}
.form-rightside h1 {
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    margin: 0px;
    padding: 50px 0 16px 0;
    color: #1E1E1E;
}
.form-rightside h1 span {
    font-size: 13px;
    display: block;
    font-weight: 300;
    width: 55%;
    margin: auto;
    text-transform: lowercase;
    padding: 6px 0 0 0;
    position: relative;
}
.form-rightside h1 span:before {
    content: '';
    border-bottom: 2px solid #DA251D;
    position: absolute;
    bottom: -13px;
    width: 88%;
    left: 16px;
}
label.form-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #1E1E1E;
    padding: 0 0 7px 0;
}
.form {
    width: 82%;
    margin: auto;
}
.form .form-control {
    width: 90%;
    height: 36px;
    border-radius: 11px;
    border: 1px solid #ababab;
    padding: 0 10px;
    margin: 0 0 0 0;
}
.form-control-box {
    margin: 26px 0;
    padding: 0px;
}
.field-icon {
    float: right;
    margin-right: 17px;
    margin-top: -34px;
    position: relative;
    z-index: 2;
    background: #fff;
    height: 30px;
    display: flex;
    align-items: center;
    width: 36px;
    justify-content: center;
    border-radius: 0 14px 11px 0;
    cursor: pointer;
}
.btn-login {
    text-align: center;
    margin: auto;
    background: #DA251D;
    border: 1px solid transparent;
    padding: 8px 34px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Inter';
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.5s;
}
.btn-login:hover{
    background-color: #e94e46;
}
@media(max-width:767px){
    .main-bx { 
    background-size: cover;
    height: 100%;    
}
.form-box{
    width: 92%;
}
.form-center{
    flex-wrap: wrap;
}
.form-leftside, .form-rightside{
    width: 100%;
    height: auto;
    padding-bottom: 20px;
}
.form-header{
    padding: 14px 12px;
}

}

