@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0px;
    padding:0px;
    box-sizing:border-box;
}
html,body{
    
}
body{
    font-family: 'Roboto', sans-serif;
    background-image: linear-gradient(50deg, #9646d9, #eb1d29) !important;
    background-size:cover;
    background-position:center;
    height:100vh;
}

.login-form {
    width: 100%;
    /* height: 100vh; */
    background-image: linear-gradient(50deg, #9646d9, #eb1d29);
    padding: 60px 80px 60px 80px;
    margin: auto;
    display: flex;
    /* box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%); */
}
.login-inner {
    display: flex;
    width: 100%;
    align-items: center;
}
.left-section{
    width: 51.1%;
}
.left_img {
    width: 100%;
    background: #fff;
    border-radius: 62px;
    overflow: hidden;
    padding: 0px 9%;
}
.left_img img {
    width: 100%;
}
.right-section {
    width:48.9%;
    align-self: center;
    padding-left: 4%;
}
.right-section h3 {
    font-size: 30px;
    margin-top: 0px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: normal;
}
.right-section .new-user h3{
    margin-bottom: 17px;
}
.input-box {
    background: #ffffff4d;
    border: none;
    border-radius: 15px;
    padding: 16px 20px;
    width: 100%;
    font-size: 22px;
    margin-bottom: 23px;
    color: #fff;
}
input::placeholder {
    color: #fff;
    font-size: 22px;
}
.forget-password {
    margin: 0px 0px 23px;
    padding-left: 25px;
}
.forget-password a{color: #fff; text-decoration: underline;font-size: 18px;}
.login-btn{width:100%;}
.submit-btn {
    text-align: center;
    width: 100%;
    padding: 12px 8px;
    border-radius: 15px;
    font-size: 25px;
    color: #000;
    cursor: pointer;
    text-transform: uppercase;
    border: 0px;
    background: #fff;
    font-weight: 600;
}
.submit-btn-round {
    background: transparent;
    border: 3px solid #fff;
    width: 100%;
    padding: 12px 8px;
    border-radius: 15px;
    text-align: center;
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
}
.new-user .submit-btn{
    margin-top: 20px;
}
.new-user {
    margin: 82px 0px 40px;
}
.right-section form {
    max-width: 510px;
    margin: auto;
}
.login-btn a{color: #000; text-decoration: none; display: block;}
.submit-btn a{color: #fff; text-decoration: none; display: block;}

.input-box:focus-visible{
    outline: none !important;
}
.error-message{
    width: 100%;
}
.back {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.back a{
    color:#fff;
    font-size: 22px;
}
.normal-text {
    color: #fff;
    margin-bottom: 40px;
    font-size: 22px;
    display: inline-block;
}
#adduser > p{
    margin-bottom: 25px;
    font-size: 22px;
}
.txt p{
    color: #fff;
    font-size: 18px;
    margin: 10px 0px 30px;
}
.txt p a{
    color: #fff;
}
.resend {
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 40px;
}
.box-input{
    margin-top: 7px;
}
.box-input .otp.input-box{
    display:inline-block;
    width:52px;
    height:59px;
    text-align:center;
    margin-right: 15px;
}
.reset.submit-btn {
    margin-top: 40px;
}
.back-icon {
    max-width: 510px;
    margin: 0px auto;
    margin-bottom: 60px;
}
.back-icon img{
    width: 45px;
}
.login-form.forgot-password .right-section {
    align-self: start;
    padding-top: 10%;
}
.login-form.forgot-password .right-section h3{
    margin-bottom: 10px;
}
.login-form.forgot-password .right-section .normal-text{
    margin-bottom: 45px;
}
.login-form.forgot-password .right-section .login-btn{
    margin-top: 38px;
}


.back-icon.left-back-icon {
    display: none;
    margin-left:0px;
    margin-bottom: 30px;
}

.back-icon .accordian_section{
    max-width: unset;
    margin: unset;
}

.accordian_section{
    text-align: right;
    position: relative;
    padding: 30px;
    max-width: 26.55vw;
    margin: 0 auto;
}
.lang_accordion {
    display: inline-block;
    background: #ffffff4d;
    border-radius: 0.75vw;
    font-size: 1.25vw;
    color: #fff;
    list-style-type: none;
    position: absolute;
    top: 0;
    right: 0;
    text-align:left;
}

.lang_accordion .link {
  cursor: pointer;
  display: block;
  padding: 10px 40px;
  color: #fff;
  font-size: 16px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.lang_accordion li:last-child .link { border-bottom: 0; }

.lang_accordion li i {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 18px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.lang_accordion li i.fa-chevron-down {
  right: 12px;
  top: 13px;
  left: auto;
  font-size: 16px;
}

.lang_accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/**
 * Submenu
 -----------------------------*/


.lang_submenu {
  display: none;
  font-size: 14px;
  color: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  list-style-type:none ;
}

.lang_submenu li{
    position: relative
}
.lang_submenu a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 8px 13px 8px 40px;
  padding-left: 42px;
  font-size: 16px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.lang_submenu li i{
    height: 12px;
    width: 12px;
    background: #ffffff4d;
    outline: 2px solid #ffffff4d;
    border-radius: 100%;
    left:15px;
}
.lang_submenu li:hover i{
    background: #fff;
}
.lang_submenu a:hover {
  color: #FFF;
}



/*punit css*/
@media screen and (max-width:768px) {
    .login-form{
           height:auto;
           background-size: 100% 100%;
       }
       .back-icon {
        margin-bottom: 30px;
        display: none;
    }
    
    .back-icon.left-back-icon {
        display: block;
    }


   }

   /* @media (min-width: 375px) and (max-width: 414px) {
    .login-form{
           height:auto !important;
           background-size: 100% 100%;
       }
   } */
   /* @media (min-width: 375px) and (max-width: 768px) {
    .login-form{
           height:100vh !important;
           background-size: 100% 100%;
       }
   } */
   @media (min-width: 769px) and (max-width: 1280px){
       .login-form{
           height:100vh !important;
           background-size: 100% 100%;
       }
   }
/*End punit css*/
@media (min-width: 768px) and (max-width: 1919px){
    .login-form{
        padding: 3vw 4vw 3vw 4vw;
    }
    .left_img{
        border-radius: 3.1vw;
    }
    .right-section form{
        max-width: 26.55vw;
    }
    .right-section h3{
        font-size: 1.5vw;
        margin-bottom: 1.25vw;
    }
    .input-box{
        padding:0.8vw 1vw;
        font-size: 1.05vw;
        margin-bottom: 1.15vw;
        border-radius: 0.75vw;
    }
    .forget-password {
        margin: 0px 0px 1.15vw;
        padding-left: 1.25vw;
    }
    .forget-password a{
        font-size: 0.9vw;
    }
    .submit-btn{
        padding: 0.6vw 0.4vw;
        border-radius: 0.75vw;
        font-size: 1.25vw;
    }
    .new-user {
        margin: 4.1vw 0px 2vw;
    }
    .right-section .new-user h3 {
        margin-bottom: 0.85vw;
    }
    .submit-btn-round{
        border: 0.15vw solid #fff;
        padding: 0.6vw 0.4vw;
        border-radius: 0.75vw;
        font-size:1.25vw;
    }
    input::placeholder {
        font-size: 1.1vw;
    }
    .back {
        margin-top: 1.5vw;
    }
    .back a{
        font-size: 1.1vw;
    }
    .normal-text {
        margin-bottom: 2vw;
        font-size: 1.1vw;
    }
    #adduser > p{
        margin-bottom: 1.25vw;
        font-size: 1.1vw;
    }
    .txt p{
        font-size: 0.9vw;
        margin:0.5vw 0px 1.5vw;
    }
    .resend {
        font-size: 1.1vw;
        margin-top: 0.75vw;
        margin-bottom: 2vw;
    }
    .box-input{
        margin-top: 0.35vw;
    }
    .box-input .otp.input-box{
        width:2.6vw;
        height:2.85vw;
        margin-right: 0.75vw;
        border-radius: 0.5vw;
    }
    .reset.submit-btn {
        margin-top: 2vw;
    }
    .back-icon {
        max-width: 26.55vw;
        margin-bottom: 3vw;
    }
    .back-icon img {
        width: 2.25vw;
    }

    .login-form.forgot-password .right-section h3{
        margin-bottom: 0.5vw;
    }
    .login-form.forgot-password .right-section .normal-text{
        margin-bottom: 2.25vw;
    }
    .login-form.forgot-password .right-section .login-btn{
        margin-top: 1.9vw;
    }
}
@media (max-width:768px){

.back-icon a img {
    width: 23px !important;
    height: 23px !important;
}
    .login-form{
        padding:30px 40px 30px 40px;
    }
    .login-inner{
        flex-wrap: wrap;
    }
    .left_img{
        border-radius: 15px;
    }
    .right-section form{
        max-width: 500px;
    }
    .left-section {
        width: 100%;
        order: 1;
        margin-bottom: 30px;

    }
    .right-section{
        width: 100%;
        padding-left: 0px;
        order: 2;
    }

    .left {
        width: 100%;
        order: 1 !important;
        margin-bottom: 30px !important;

    }
    .right{
        width: 100%;
        padding-left: 0px;
        order: 2 !important;
        /* margin-top: 30px; */

    }
    .right-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .input-box {
        padding: 14px 10px;
        font-size: 14px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    .forget-password {
        margin: 0px 0px 15px;
        padding-left: 10px;
    }
    .forget-password a{
        font-size: 12px;
    }
    .submit-btn {
        padding: 12px 10px;
        font-size: 14px;
        border-radius: 10px;
    }
    .new-user {
        margin: 40px 0px 20px;
    }
    .right-section .new-user h3 {
        margin-bottom: 0.85vw;
    }
    .submit-btn-round{
        border: 2px solid #fff;
        border-radius: 10px;
        padding: 10px 10px;
        font-size: 14px;
        border-radius: 10px;
    }
    input::placeholder {
        font-size: 14px;
    }
    .back {
        margin-top: 15px;
    }
    .back a{
        font-size: 14px;
    }
    .normal-text {
        margin-bottom: 20px;
        font-size: 14px;
    }
    #adduser > p{
        margin-bottom: 25px;
        font-size: 22px;
    }
    .txt p{
        font-size: 18px;
        margin: 10px 0px 30px;
    }
    .resend {
        font-size: 22px;
        margin-top: 15px;
        margin-bottom: 40px;
    }
    .box-input{
        margin-top: 7px;
    }
    .box-input .otp.input-box{
        width:52px;
        height:59px;
        margin-right: 15px;
    }
    .reset.submit-btn {
        margin-top: 40px;
    }
    .back-icon {
        margin-bottom: 60px;
    }

}
@media only screen and (max-width: 440px) {
    .course, .account, .account2 {
margin: 0px 5px !important;
}
.nhs {
margin-left: 8px;
}
.nhs img {
width: 70px;
}

}