html,
body {
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

header {
  width: 100%;
  padding: 32px 0 12px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.login_signup_wrap {
  height: 100vh;
  min-height: 720px;
  position: relative;
  padding-top: 120px;
}

.ls_form {
  padding: 15px;
  margin: 0 auto;
  width: 100%;
  transition: all ease-in 0.4s;
  display:none;
}

.ls_form.active {
  display:block;
}

.login_form {
  max-width: 480px;
}

.signup_form {
  max-width: 600px;
}

.ls_form .form_head h2 {
  font-weight: 700;
  font-size: 26px;
}
.ls_form .form_head p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #686666;
}

.ls_form label {
  font-size: 14px;
  font-weight: 600;
}

.ls_form input,
.ls_form select,
.ls_form textarea {
  height: 45px;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid #C5C5C5;
  padding-left: 0;
  font-size: 14px;
  font-weight: 400;
}

.ls_form input:active,
.ls_form input:focus,
.ls_form select:active,
.ls_form select:focus,
.ls_form textarea:active,
.ls_form textarea:focus {
  outline: 0;
  box-shadow: none;
}

.ls_form input[type=checkbox] {
  width: 20px;
  height: 20px;
}

.btn-theme {
  padding: 10px 40px;
  background: #FFD103;
  color: #000;
  border: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #111010;
}

.login_signup_switcher {
  width: 50%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
  background-image: linear-gradient(to top, rgba(255, 209, 3, 0.79), rgb(235, 193, 3));
  transition: all ease-in 0.4s;
}
.login_signup_switcher h2 {
  font-weight: 700;
  font-size: 26px;
}
.login_signup_switcher p {
  font-weight: 400;
  font-size: 18px;
  color: #686666;
}
.login_signup_switcher .btn-theme {
  padding: 12px 50px;
  background: #FFD103;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 2px 4px #E0B804;
  border-radius: 33px;
}

.login_signup_switcher.left {
  right: 50%;
}
.login_signup_switcher.left .signin_form_info {
  display: none !important;
}
.login_signup_switcher.left .login_form_info {
  display: block !important;
}

.login_signup_switcher:before {
  content: "";
  display: block;
  border-left: 200px solid #FFF;
  border-top: 100vw solid transparent;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
  transition: all ease-in 0.4s;
}
 
.login_signup_switcher.left:before {
  border-left: none;
  border-right: 200px solid #FFF;
  border-top: 100vw solid transparent;
  left: initial;
  right: 0;
}

.ls_forms_switch_info {
  width: 100%;
  max-width: 440px;
  padding: 20px;
  margin: 0 auto;
}
@media only screen and (max-width:768px){
   .login_signup_switcher:before {
        border-left: 50px solid #FFF;
    }
    .login_signup_switcher.left:before{
        border-right: 50px solid #FFF;
    }
}
@media only screen and (max-width:767px){
   .login_signup_switcher:before,.login_signup_switcher.left:before {
        border:none;
    }
    .login_signup_switcher:before,.login_signup_switcher.left:before{
        content: "\f100";
        height: 50px;
        width: 30px;
        top: 85%;
        line-height: 50px;
        padding: 0 0 0 5px;
        left: -30px;
        right:auto;
        background: #edc409;
        border-radius: 20px 0 0 20px;
        font-size: 22px;
        font-family: "Font Awesome 6 Free";
    }
    body .login_signup_switcher,body .login_signup_switcher.left{
        width:100%;
        right:-100%;
        overflow:visible !important;
    }
}