.inner-page-body {
  background: url(../img/login-bg.jpg) no-repeat top right;
  background-size: cover;
  background-attachment: fixed;
}

.main {
  background: transparent;
  border-radius: 3px;
  padding: 30px;
  position: relative;
  display: flex;
}

.main .form_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.main .form_wrapper .tile {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
}

.main .form_wrapper .tile h3 {
  font-size: 22px;
  margin: 0px;
  transition: all 0.3s ease;
}

.main .form_wrapper .radio {
  display: none;
}

.main .form_wrapper .tab {
  width: 50%;
  border: solid 2px #f1f1f1;
  height: 54px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  user-select: none;
}

.main .form_wrapper .tab.login_tab {
  border-right: none;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.main .form_wrapper .tab.signup_tab {
  border-left: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.main .form_wrapper .shape {
  background: rgb(11, 113, 208);
  background: linear-gradient(270deg, rgb(44 70 171) 0%, rgba(11, 113, 208, 1) 100%);
  width: 50%;
  height: calc(54px - 1px);
  border-radius: 5px;
  position: absolute;
  top: 68.5px;
  left: 0px;
  opacity: 0.9;
  transition: all 0.4s ease;
}
.main .form_wrapper .shape:hover {
  background: linear-gradient(-45deg, #a547b1, #f84298) no-repeat center;
}

.main .form_wrapper #login:checked ~ .shape {
  left: 0px;
}

.main .form_wrapper #login:checked ~ .login_tab {
  border-color: transparent;
  z-index: 1;
  color: white;
}

.main .form_wrapper #login:checked ~ .tile .signup {
  display: none;
}

.main .form_wrapper #login:checked ~ .form_wrap {
  transform: translateX(0);
}

.main .form_wrapper #login:checked ~ .form_wrap .signup_form {
  opacity: 0;
}

.main .form_wrapper #signup:checked ~ .shape {
  left: 50%;
}

.main .form_wrapper #signup:checked ~ .signup_tab {
  border-color: transparent;
  z-index: 1;
  color: white;
}

.main .form_wrapper #signup:checked ~ .tile .login {
  display: none;
}

.main .form_wrapper #signup:checked ~ .form_wrap {
  transform: translateX(-100%);
}

.main .form_wrapper #signup:checked ~ .form_wrap .login_form {
  opacity: 0;
}

.main .form_wrapper a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s linear;
  font-weight: 600;
}

.main .form_wrapper a:hover {
  color: #333;
}

.main .form_wrapper .form_wrap {
  display: flex;
  width: 100%;
  flex: 0 0 100%;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.main .form_wrapper .form_wrap .form_fild {
  width: 100%;
  flex: 0 0 100%;
  transition: all 0.5s ease;
}

.main .form_wrapper .form_wrap .form_fild .input_group {
  width: 100%;
  margin-bottom: 12px;
}

.main .form_wrapper .form_wrap .form_fild .input_group .input {
  border: solid #f1f1f1 2px;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: all 0.3s linear;
}

.main .form_wrapper .form_wrap .form_fild .input_group .input::placeholder {
  color: #adadad;
}

.main .form_wrapper .form_wrap .form_fild .input_group .input:hover {
  border-color: rgb(121 186 245);
}

.main .form_wrapper .form_wrap .form_fild .input_group .input:focus {
  border-color: rgb(121 186 245);
}

.main .form_wrapper .form_wrap .form_fild .forgot {
  display: block;
  margin-bottom: 15px;
  padding: 0px 2px;
}

.main .form_wrapper .form_wrap .form_fild .btn {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: white;
  background: rgb(11, 113, 208);
  background: linear-gradient(270deg, rgb(44 70 171) 0%, rgba(11, 113, 208, 1) 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
}

.main .form_wrapper .form_wrap .form_fild .btn:hover {
  background: rgb(11, 113, 208);
  background: linear-gradient(270deg, rgb(44 70 171) 0%, rgba(11, 113, 208, 1) 100%);
}

.main .form_wrapper .form_wrap .form_fild .btn:active {
  transform: scale(0.95);
}

.main .form_wrapper .form_wrap .form_fild .not_mem {
  text-align: center;
}

.main .form_wrapper .form_wrap .form_fild .not_mem label {
  pointer-events: none;
}

.main .form_wrapper .form_wrap .form_fild .not_mem label span {
  pointer-events: all;
  color: #333;
  text-decoration: none;
  transition: all 0.3s linear;
  font-weight: 800;
}

.main .form_wrapper .form_wrap .form_fild .not_mem label span:hover {
  color: #333;
}

.login-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: url(../img/login-bg.jpg) no-repeat;
  background-size: cover;
  height: 100%;
  padding: 120px 0;
}

.login-form-section input[type=radio]:checked ~ label::before  {
  display: none;
}

.main .form_wrapper .tile h3 .small  {
  font-size: 50%;
}

.form-main-strip {
  background: #fff;
  padding: 50px 30px 30px;
  border-radius: 25px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


input[type=radio] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 3px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: #fff;
  color: transparent;
  transition: all 0.2s ease;
}

.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url(../img/download.svg);
}

.form-main-strip h4 {
  font-size: 17px;
  background: #e5dfb5;
  padding: 15px 25px;
  border-radius: 15px;
  border: none;
  color: #4045ba;
  font-weight: 900;
  text-transform: uppercase;
}

.form-strip .form-check {
  margin-left: 0;
  padding-left: 28px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.form-strip input[type=checkbox] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.form-strip  {
  margin-bottom: 20px;
}

.login-form-section-basic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 120px 0;
}



.btnhome-group a.btn.style5  {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: inline-flex;
  border: none;
  align-items: center;
  text-align: center;
  background-color: #d80000 !important;
  color: var(--white-color) !important;
  font-family: var(--body-font);
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 25px;
  padding: 15px 32px !important;
  overflow: hidden;
  transition: all 0.35s;
  border-radius: 5px !important;
}

.login-logo  {
  width: 300px;
  margin: 0px auto 15px;
}

.main .form_wrapper .tile {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
  background: antiquewhite;
  padding: 12px;
  border-radius: 10px;
}

.text-right  {
  text-align: right;
}

.upload__box {
  padding: 5px 0;
  position:relative;
}
.upload__inputfile {
    width: 240px;
    height: 50px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: 99999;
    top: 3px;
}
.upload__btn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  min-width: 116px;
  padding: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
  background-color: #4045ba;
  border-color: #4045ba;
  border-radius: 10px;
  line-height: 26px;
  font-size: 14px;
}
.upload__btn:hover {
  color: #4045ba;
  opacity: .7;
  transition: all 0.3s ease;
}
.upload__btn-box {
  margin-bottom: 10px;
}
.upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
}
.upload__img-box {
  width: 200px;
  padding: 0 10px;
  margin-bottom: 12px;
}
.upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgb(216 0 0);
  position: absolute;
  top: -18px;
  right: -18px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}
.upload__img-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}

.img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
}

label.upload__btn p {
  padding: 8px 20px;
  color: #fff;
  margin-bottom: 0;
}

.upload__img-box {
  width: 200px;
  padding: 0 10px;
  margin-bottom: 12px;
  background: antiquewhite;
  padding: 15px;
  border-radius: 10px;
  margin-right: 15px;
}

.total-text  {
  color: rgb(11, 113, 208);
  font-weight: 900 !important;
}

.or-text {
  background: aliceblue;
  padding: 10px 0;
  text-align: center;
  border-radius: 5px;
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 18px;
}

input::placeholder  {
  color: #000 !important;
  font-weight: 600;
}

.label-sub-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  width: 100%;
  overflow: hidden;
  background: antiquewhite;
  padding: 12px;
  border-radius: 10px;
}
