@font-face {
  font-family: "Muli-Regular";
  src: url("../fonts/muli/Muli-Regular.ttf"); 
}
@font-face {
  font-family: "Muli-SemiBold";
  src: url("../fonts/muli/Muli-SemiBold.ttf"); 
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; 
}

body {
  font-family: "Muli-Regular";
  font-size: 15px;
  color: #999;
  margin: 0; 
}
:focus {
  outline: none; 
}
textarea {
  resize: none; 
}
input, textarea, select, button {
  font-family: "Muli-Regular";
  font-size: 15px; 
}
p, h1, h2, h3, h4, h5, h6, ul {
  margin: 0; 
}
ul {
  padding: 0;
  margin: 0;
  list-style: none; 
}
a {
  text-decoration: none; 
}
textarea {
  resize: none; 
}
img {
  max-width: 100%; 
}
.wrapper {
  height: 100vh;
  background: #f9f6f1;
  display: flex;
  align-items: center;
  justify-content: center; 
}
.wizard {
  width: 920px;
  position: relative; 
}
.wizard > .steps {
  position: absolute;
  top: 27.44%;
  right: 30%;
  transform: translateX(50%);
  z-index: 9; 
}
.wizard > .steps .current-info, .wizard > .steps .number {
  display: none; 
}
.wizard > .steps ul {
  display: flex;
  justify-content: center; 
}
.wizard > .steps li a {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e9e0cf;
  margin-right: 78px;
  position: relative; 
}
.wizard > .steps li a:before {
  content: "";
  width: 58px;
  height: 2px;
  background: #e9e0cf;
  position: absolute;
  right: 22px;
  top: 5px; 
}
.wizard > .steps li a:after {
  content: "";
  width: 0;
  height: 2px;
  background: #6d7f52;
  position: absolute;
  left: -68px;
  top: 5px;
  transition: all 0.6s ease; 
}
.wizard > .steps li.first a {
  background: #6d7f52; 
}
.wizard > .steps li.checked a {
  background: #6d7f52; 
}
.wizard > .steps li.checked a:after {
  width: 58px; 
}
.wizard > .steps li:last-child a {
  margin-right: 0; 
}
.wizard > .steps li:first-child a:before {
  display: none; 
}
.wizard > .steps li:first-child a:after {
  display: none; 
}
.wizard > .content {
  position: relative;
  height: 521px; 
}
.inner {
  display: flex;
  background: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); 
}
.image-holder {
  width: 40%;
  height: 521px; 
}
.form-content {
  width: 60%;
  padding-top: 65px;
  padding-left: 51px;
  padding-right: 51px; 
}
.form-header {
  text-align: center; 
}
h3 {
  font-family: "Muli-SemiBold";
  font-size: 22px;
  color: #453e79;
  text-transform: uppercase;
  letter-spacing: 7px;
  padding: 5px 15px;
  display: inline-block;
  border: 1px solid #dad8e4;
  margin-bottom: 75px; 
}
p {
  font-family: "Muli-SemiBold";
  font-size: 20px;
  color: #6d7f52;
  text-align: center;
  margin-bottom: 26px; 
}
.form-row {
  display: flex;
  margin-bottom: 18px; 
}
.form-row .form-holder {
  width: 50%;
  margin-right: 30px; 
}
.form-row .form-holder:last-child {
  margin-right: 0; 
}
.form-row .form-holder.w-100 {
  width: 100%;
  margin-right: 0; 
}
.form-row .select {
  width: 50%;
  margin-right: 30px; 
}
.form-row .select .form-holder {
  width: 100%;
  margin-right: 0; 
}
.select {
  position: relative; 
}
.select .select-control {
  height: 37px;
  border-bottom: 2px solid #e6e6e6;
  width: 100%;
  color: #999;
  display: flex;
  align-items: center;
  cursor: pointer; 
}
.select .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  background: #fff;
  z-index: 9;
  border: 1px solid #81acee; 
}
.select .dropdown li {
  padding: 5px 10px; 
}
.select .dropdown li:hover {
  background: #81acee;
  color: #fff; 
}
.form-holder {
  position: relative; 
}
.form-holder i {
  position: absolute;
  bottom: 7px;
  right: 0;
  font-size: 17px; 
}

.form-control {
  height: 37px;
  border: none;
  border-bottom: 2px solid #e6e6e6;
  width: 100%;
  color: #666; 
}
.form-control:focus {
  border-color: #e9e0cf; 
}
.form-control::-webkit-input-placeholder {
  color: #999; 
}
.form-control::-moz-placeholder {
  color: #999; 
}
.form-control:-ms-input-placeholder {
  color: #999; 
}
.form-control:-moz-placeholder {
  color: #999; 
}
select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #999; 
}
select.form-control option[value=""][disabled] {
  display: none; 
}
textarea.form-control {
  padding: 8px 0;
  background: url("../images/textarea-bg.png") no-repeat right bottom 3px; 
}
.actions {
  position: absolute;
  bottom: 55px;
  right: 51px; 
}
.actions ul {
  display: flex; 
}
.actions li a {
  padding: 0;
  border: none;
  display: inline-flex;
  height: 41px;
  width: 135px;
  align-items: center;
  background: #e9e0cf;
  font-family: "Muli-SemiBold";
  color: #666;
  cursor: pointer;
  position: relative;
  padding-left: 28px; 
}
.actions li a:before {
  content: '\f301';
  position: absolute;
  top: 14px;
  right: 28px;
  font-family: Material-Design-Iconic-Font; 
}
.actions li a:hover {
  background: #cfc7b8; 
}
.actions li:first-child a {
  width: 144px;
  padding-left: 48px; 
}
.actions li:first-child a:before {
  content: '\f2ff';
  position: absolute;
  top: 14px;
  left: 26px;
  font-family: Material-Design-Iconic-Font; 
}
.actions li:nth-child(2) a, .actions li:last-child a {
  margin-left: 20px; 
}
.actions li:last-child a {
  width: 124px;
  background: #6d7f52;
  color: #fff; 
}
.actions li:last-child a:hover {
  background: #849963; 
}
.actions li:last-child a:before {
  content: '\f26b';
  position: absolute;
  top: 13px;
  right: 28px;
  font-family: Material-Design-Iconic-Font; 
}
.actions li[aria-disabled="true"] a {
  opacity: 0;
  transition: all 1s; 
}
.actions li[aria-disabled="false"] ~ li a {
  background: #6d7f52;
  color: #fff; 
}
.actions li[aria-disabled="false"] ~ li a:hover {
  background: #849963; 
}

.checkbox-tick label {
  cursor: pointer;
  display: inline-block;
  padding-left: 23px;
  position: relative; 
}
.checkbox-tick label.male {
  margin-right: 26px; 
}
.checkbox-tick input {
  position: absolute;
  opacity: 0;
  cursor: pointer; 
}
.checkbox-tick input:checked ~ .checkmark {
  background: #999; 
}
.checkbox-tick input:checked ~ .checkmark:after {
  display: block; 
}
.checkbox-tick .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 13px;
  width: 13px;
  border: 1px solid #999;
  border-radius: 50%;
  font-family: Material-Design-Iconic-Font;
  color: #fff;
  font-size: 11px; 
}
.checkbox-tick .checkmark:after {
  top: 0;
  left: 2px;
  position: absolute;
  display: none;
  content: '\f26b'; 
}

.checkbox-circle {
  position: relative;
  padding-left: 23px;
  margin-top: 41px;
  width: 63%; 
}
.checkbox-circle.mt-24 {
  margin-top: 24px; }
.checkbox-circle label {
  cursor: pointer;
  color: #999;
  font-size: 13px;
  line-height: 1.9;
  transform: translateY(-5px); 
}
.checkbox-circle label a {
  color: #6d7f52; 
}
.checkbox-circle label a:hover {
  color: #89b843; 
}
.checkbox-circle input {
  position: absolute;
  opacity: 0;
  cursor: pointer; 
}
.checkbox-circle input:checked ~ .checkmark:after {
  display: block; 
}
.checkbox-circle .checkmark {
  position: absolute;
  top: 6px;
  left: 0;
  height: 13px;
  width: 13px;
  border-radius: 50%;
  border: 1px solid #999; 
}
.checkbox-circle .checkmark:after {
  content: "";
  top: 2px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #999;
  position: absolute;
  display: none; 
}

@media (max-width: 991px) {
  .wizard {
    max-width: 768px; 
  }
  .image-holder img {
    height: 521px;
    object-fit: cover; 
  } 
}
@media (max-width: 767px) {
  .inner {
    display: block;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none; 
  }
  .image-holder {
    width: 100%; 
  }
  .image-holder img {
    width: 100%; 
  }
  .form-content {
    width: 100%;
    padding: 50px 20px 30px; 
  }
  .form-row {
    display: block; 
  }
  .form-row .form-holder, .form-row .select {
    width: 100%;
    margin-right: 0;
    margin-bottom: 18px; 
  }
  .wrapper {
    height: 1201px;
    background: none; 
  }
  .checkbox-circle {
    width: 100%; 
  }
  .wizard {
    height: 100%; 
  }
  .wizard > .steps {
    right: 50%;
    top: 52%;
    transform: translateX(50%); 
  }
  .actions {
    right: 50%;
    transform: translateX(50%);
    bottom: 3%; 
  } 
}

/* additional css */
select.form-control{
  -webkit-appearance: auto;
}
.status .success{
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  color: #60980b;
}
.status .success:before {
  content: '\f26b';
  font-family: Material-Design-Iconic-Font;
  font-size: 40px;
  margin-right: 10px;
  vertical-align: sub;
}
.status .error{
  font-size: 16px;
  color: #fb4314;
}
label.error {
  font-size: 14px;
  color: red;
  font-style: italic;
}
.form-control.error{
  border-bottom-color: red;
}

a.term {
    color: #0d6efd !important;
    text-decoration: underline;
}

a.data {
    color: #0d6efd !important;
    text-decoration: underline;
}

p.content span {
    font-size: 1.8vh !important;
    font-style: normal;
        margin-top: 1vh;
}

p.content.c_2 {
    color: #fff !important;
}

.logins {
    position: absolute;
    right: 6vh;
    top: 4vh;
}

.logins p {
    font-size: 2vh !important;
    font-family: "Poppins", Sans-serif;
    color: #23222D;
    
}

a.in {
    color: #009DDC !important;
    font-weight: 600;
}

div#errormsg {
    font-size: 1.5vh;
}

a.in {
    color: #009DDC!important;
}

h1.mobileverification-right-content-heading {
    font-size: 3.1vh !important;
    line-height: 4.5vh !important;
    color: #242331;
    margin: 0 !important;
}

.fields input {
    padding-left: 6vh !important;
}

p.mobilevarification-content-under-form {
    font-family: "Poppins", Sans-serif;
    color: #000;
    font-size: 1.4vh;
    text-align: left;
}



.content {
    
    margin-bottom: 2vh;
}

.custom-left-main h1{line-height: 0 !important;}


.custom-left-main{margin:0 !important;
  gap: 25vh;
  padding: 3vh !important;}

.custom-left-main h1 {
    font-family: "Poppins", Sans-serif;
    text-align: center;
    color: #fff;
    font-size: 5vh;
}

.content {
    text-align: center;
    color: #D9D9D9;
    padding: 0 !important;
    font-family: "Poppins", Sans-serif;
    font-style: italic;
  font-size: 2.5vh !important;
}

p.content span {
    font-size: 1.5vh !important;
}

.right-content {
    margin-left: 0vh !important;
    width: 50vh !important;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

button.right-content-button {
    background: transparent !important;
    border: 1px solid #C5C5C5;
    border-radius: 1vh;
    height: 6vh;
}

.right-content.succs h1 {
    font-size: 3vh !important;
    line-height: 4.5vh !important;
        margin: 0;
}

.custom-right-main.sucv.sec2 .mobileverification-right-content {
    gap: 22vh;
}

button.right-content-button {
    background: transparent !important;
    border: 1px solid #C5C5C5;
    border-radius: 1vh;
    height: 6vh;
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 2vh;
      padding: 1vh !important;
}

p.checkbox-content {
    font-family: "Poppins", Sans-serif;
    font-size: 1.5vh;
    text-align: left;
    font-weight: 500;
    color: #000;
    padding-top: 0.5vh;
}

ul.checkbox-list li {
    font-family: "Poppins", Sans-serif;
    list-style: disc;
    color: #232323;
    margin-left: 0.5vh;
    font-size: 1.2vh;
    font-weight: 500;
    line-height: 2vh;
}

p.content-under-form {
    font-family: "Poppins", Sans-serif;
    text-align: left;
    font-weight: 500;
    font-size: 1.7vh;
    color: #23222D;
    line-height: 0;
    margin-top: 0vh;
    margin-bottom: 2vh;
}

label.error {
    font-size: 1.5vh !important;
    color: red;
    font-style: italic;
    font-family: "Poppins", Sans-serif;
}

.right-content input {
    font-family: "Poppins", Sans-serif;
    background: transparent !important;
    border: 0.1vh solid #C5C5C5 !important;
    border-radius: 1vh !important;
    height: 6vh;
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 2vh !important;
    padding: 2vh ;
    margin-bottom: 1vh !important;
}

#account-ajax-form .error{margin: 0;}

.up input {
    padding: 2vh !important;
    margin: 0 !important;
}

.up input {
    padding: 2vh !important;
}

.googleimg {
    width: 3vh !important;
    padding-right: 1vh !important;
}

.right-content h1 {
    font-size: 5vh;
    line-height: 0;
    font-family: "Poppins", Sans-serif;
    margin-bottom: 9vh;
}

button.right-content-button {
    margin-bottom: 0vh;
}

.mob button:active {
    background: #0062ffba !important;
}




.code h4 {
    font-family: "Poppins", Sans-serif;
    text-align: center;
    font-size: 1.5vh;
    font-weight: normal;
    line-height: 1vh;
    background: #fff;
    display: inline-block;
    margin: 0 auto;
    padding: 0 2vh;
    position: absolute;
    left: 18vh;
    top: -0.5vh;
}

.container.code {
    text-align: center;
    position: relative;padding: 0 !important;
}

.right-content {
   
  gap: 1vh !important;}

.mob button{
     
         font-weight: 400;
    border-radius: 25vh !important;
    height: 6vh;
    font-family: "Poppins", Sans-serif;
    font-size: 2vh;
    padding: 1vh !important;
    margin-left: 0 !important;
    background: #0062FF !important;
    box-shadow: #000 0px 0.2vh 0 0;
    width: 100% !important;
    border: 0.2vh solid #000;
}

input#agree {
    height: auto !important;
    margin-top: 0.4vh;
}


.custom-right-main {
    position: relative;
}

.back {
    position: absolute;
    top: 5vh;
    left: 4vh;
    z-index: 9999;
}


.logo img {
    width: 47vh;
}

dotlottie-player.wide {
    width: 22vh;
    margin: 0 auto;
}


.mob :disabled {
    width: 100%;
    background: #E3E3E3 !important;
    border: 0.3vh solid #5F5F5F;
    color: #979797;
    font-family: "Poppins", Sans-serif;
    font-weight: normal;
    height: 6vh;
    margin: 0 !important;
    padding: 0;
}

.mobileverification-right-content {
    display: flex;
    flex-direction: column;
    gap: 21vh;
}


.form-control:focus{box-shadow: none !important;}


progress {
  width: 100%;
  height: 30px;
}

progress::-webkit-progress-bar {
  background-color: gray;
}

progress::-webkit-progress-value {
  background-color: blue;
}

progress::-moz-progress-bar {
  background-color: blue;
}

progress::-ms-fill {
  background-color: blue;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 4px;
    height: 6px;
    margin-bottom: 0;
    overflow: hidden;
}

.progress-container {
    width: 100%;
    background-color: #F1F5F9;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
        bottom: 5vh;
}

.progress-bar {
    height: 1vh;
    width: 0;
    background-color: blue;
    border-radius: 49px;
    transition: width 0.25s;
}

.back img {
    width: 3vh;
}

p.mobilevarificationsandcode-content-under-form {
    color: #0062FF;
    font-family: "Poppins", Sans-serif;
    font-weight: bold;
    font-size: 1.5vh;
}

.otp_bold input {
    font-weight: bold;
}


.logins h2 {
    display: none;
}


.teach {
    background-image: url(http://tutortoday.io/wp-content/uploads/2024/06/Group-1261156261.jpg) !important;
}

.custom-right-main.sucv {
    text-align: center;
}

.success p {
    text-align: center;
    font-family: "Poppins", Sans-serif;
    color: #A6A0A0;
    font-size: 2vh;
}

.custom-right-main.sucv {
    align-items: baseline !important;
}

.sucv .progress-container {
    margin-top: 7vh;
    bottom: 0 !important;
    margin-bottom: 4vh;
}

.tick img {
    width: 14vh;
}

.custom-right-main.sucv .mobileverification-right-content {
    gap: 11vh;
}


.custom-right-main.sucv.lefts {
    text-align: left !important;
}

.resend-button{
      margin-top: 2vh !important;
    font-weight: 400;
    height: 6vh;
    font-family: "Poppins", Sans-serif;
    font-size: 1.5vh;
    padding: 1vh !important;
    margin-left: 0 !important;
    background: #0062FF !important;
    box-shadow: #000 0px 0.2vh 0 0;
    width: 100% !important;
    border: 0.2vh solid #000;
    border-radius: 1vh !important;
}


.otp_bold :disabled {
    width: 100%;
    background: #0062ff70 !important;
    border-radius: 1vh !important;
    border: 0.2vh solid #0062FF !important;
    font-size: 2vh;
    height: 6vh;
    padding: 0 !important;
}



[autocomplete="one-time-code"] {
  --magic-number: 100px;

  background-image: linear-gradient(#fff, #fff),
    url("https://assets.codepen.io/3/rounded-rectangle.svg");
  background-size: var(--magic-number);
  background-position-x: right, left;
  background-repeat: no-repeat, repeat-x;
  border: 0;
  height: var(--magic-number);
  width: calc(5 * var(--magic-number));
  font-size: calc(0.6 * var(--magic-number));
  font-family: monospace;
  letter-spacing: calc(0.64 * var(--magic-number));
  padding-inline-start: calc(0.3 * var(--magic-number));
  box-sizing: border-box;
  overflow: hidden;
  transform: translatex(calc(0.5 * var(--magic-number)));
}
[autocomplete="one-time-code"]:focus {
  outline: none;
  background-image: linear-gradient(#fff, #fff),
    url("https://assets.codepen.io/729148/blue-rounded-rectangle.svg");
  background-size: var(--magic-number);
  background-position-x: right, left;
  background-repeat: no-repeat, repeat-x;
}

.custom-left-main.get {
    gap: 26vh;
}

.content {
    height: 28vh;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: end;
}



h1.bordered-heading {
    color: #A6A0A0;
    font-weight: normal;
    font-size: 1.5vh;
    position: relative;
    text-align: center;
    line-height: 0;
    margin: 0;
    vertical-align: middle;
    padding: 1vh 0;
}

.bordered-heading:before, .bordered-heading:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 0.01vh;
    width: 23vh;
    background-color: #A6A0A0;
}

.bordered-heading:before {
    left: -0vh;  /* Adjust the distance from the text */
}

.bordered-heading:after {
    right: -0vh;  /* Adjust the distance from the text */
}




.checkbox-wrapper-4 * {
    box-sizing: border-box;
  }
  .checkbox-wrapper-4 .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
   padding-right: 1vh;
    border-radius: 0vh;
    overflow: hidden;
    transition: all 0.2s ease;
    display: inline-block;
  }
  .checkbox-wrapper-4 .cbx:not(:last-child) {
    margin-right: 0px;
  }
 
  .checkbox-wrapper-4 .cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-4 .cbx span:first-child {
    position: relative;
    width: 2.5vh;
    height: 2.5vh;
    border-radius: 0.4vh;
    transform: scale(1);
    border: 0.3vh solid #000000;
    transition: all 0.2s ease;
   
  }
  .checkbox-wrapper-4 .cbx span:first-child svg {
    position: absolute;
    top: 0.3vh;
    left: 0.3vh;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-4 .cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
  }
  .checkbox-wrapper-4 .cbx:hover span:first-child {
    border-color: #07f;
  }
  .checkbox-wrapper-4 .inp-cbx {
    position: absolute;
    visibility: hidden;
  }
  .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
    background: #07f;
    border-color: #07f;
    animation: wave-4 0.4s ease;
  }
  .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }
  .checkbox-wrapper-4 .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
  }
  @media screen and (max-width: 640px) {
    .checkbox-wrapper-4 .cbx {
      width: 100%;
      display: inline-block;
    }
  }
  @-moz-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  @-webkit-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  @-o-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  @keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }




label.error {
    font-size: 1.2vh !important;
    color: red;
    font-style: normal;
    font-family: "Poppins", Sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}



.inputfield {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 3vh;
    border: 0.2vh solid #DCDCDC;
    border-radius: 1vh;
}
.input {
      height: 7vh !important;
    width: 7vh !important;
  border: 0.2vh solid #DCDCDC;
  outline: none;
  text-align: center;
  font-size: 1.5em;
  border-radius: 0.3em;
  background-color: #ffffff;
  outline: none;
  /*Hide number field arrows*/
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.show {
  display: block;
}
.hide {
  display: none;
}
.input:disabled {
  color: #89888b;
}
.input:focus {
  border: 0.3vh solid #00AC4F !important;
}

div#nom input {
    border-radius: 2vh !important;
    margin: 0 !important;
}

.logins h5 {
    display: none;
}


.form-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    bottom: 2vh;
    right: 1vh;
        z-index: 999;
    cursor: pointer;
}



.fa-eye:before {
    
    font-size: 2vh;
}




#account-ajax-form .error {
    margin: 0;
    margin-top: -1.5vh;
}



.country-selector.weglot-default {
    display: none;
}


.otp_bold ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: normal !important;
}
.otp_bold ::-moz-placeholder { /* Firefox 19+ */
  font-weight: normal !important;
}
.otp_bold :-ms-input-placeholder { /* IE 10+ */
  font-weight: normal !important;
}
.otp_bold :-moz-placeholder { /* Firefox 18- */
  font-weight: normal !important;
}


.msgbox.errormsg {
    font-size: 2vh;
    font-family: "Poppins", Sans-serif;
    color: red;
}

.otp-error.errormsg {
      margin-top: 10px;
    font-size: 2vh;
    font-family: "Poppins", Sans-serif;
    color: red;
}

.sec2 .msgbox.errormsg {
    font-family: "Poppins", Sans-serif;
    color: red;
    position: absolute;
    height: 100%;
    vertical-align: middle;
    align-items: center;
    display: flex;
    margin-top: -9vh;
}

.sec2 .right-content h1 {
    text-align: left;
}

span.iti__country-name {
    font-family: "Poppins", Sans-serif;
}


 .bordered-heading:before, .bordered-heading:after {
    height: 0.5px !important;
        box-sizing: border-box;
}


a.forget-link.passq {
    color: #009DDC !important;
    text-align: right;
    font-size: 1.8vh;
    font-weight: 600;
}

.logo {
    z-index: 999;
}


h1.mobileverification-left-content-heading.amari {
    line-height: 5vh !important;
}

.custom-left-main.img_sg {
    background: url(http://tutortoday.io/wp-content/uploads/2024/06/woman-wearing-headphones-medium-shot-scaled.webp) !important;
    background-size: cover !important;
    background-position: center !important;
}

h1.mobileverification-left-content-heading.amari {
    line-height: 5vh !important;
    z-index: 9999;
}


.quick h4 {
    font-family: "Poppins", Sans-serif;
    font-size: 2.3vh;
    line-height: 0;
    margin-bottom: 4vh;
}

ul.points li {
    font-family: "Poppins", Sans-serif;
    text-align: left;
    margin-bottom: 3vh;
    font-size: 2vh;
    color: #342E59;
}

ul.points li img {
    position: absolute;
    margin-left: -6vh;
    margin-top: -0.7vh;
    width: 4.5vh;
}


ul.points {
    width: 60vh;
}


.adv p {
    font-family: "Poppins", Sans-serif;
    margin-bottom: 3vh;
    font-size: 2vh;
    color: #342E59;
    text-align: center;
}
.adv strong {
    padding-top: 2vh !important;
    display: block;
}

ul.points {
    width: auto !important;
}


.custom-left-main.img_sg {
    position: relative;
}



.custom-left-main.img_sg:before {
    content: "";
    height: 100%;
    width: 100%;
    background: rgb(0 117 255 / 50%);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.stp {
    display: none !important;
}



.custom-left-main.Platforms {
    background: url(http://tutortoday.io/wp-content/uploads/2024/06/young-hispanic-man-artist-holding-passed-exam-sitting-table-doing-ok-sign-with-fingers-smiling-friendly-gesturing-excellent-symbol-scaled.webp);
    background-size: cover;
    background-position: center;
}

.custom-left-main.Platforms:before {
    content: "";
    height: 100%;
    width: 100%;
    background: rgb(0 117 255 / 50%);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.custom-left-main.Platforms {
    position: relative;
}

span.our {
    display: block;
    width: 68vh;
    margin-left: -9vh;
}

.presto-block-video:not(.presto-sticky-parent) {
    border-radius: 1vh !important;
}

.quick.vid {
    width: 68vh;
     margin-left: -9vh;


}
















@media(min-width:1024px) and (max-width:1225px){

  .custom-left-main h1 {
    font-family: "Poppins", Sans-serif;
    text-align: center;
    color: #fff;
    font-size: 2rem !important;
}


.custom-left-main {
    width: 30% !important;}



.custom-right-main {
    width: 70% !important;


  }

}


@media(min-width:1226px) and (max-width:1725px){


.custom-left-main {
    width: 30% !important;}




.custom-right-main {
    width: 70% !important;}



}


.logo_mob h5{display: none;}


@media(max-width:550px){ 


  .mob{
        padding: 0 25px;
        position: fixed;
        width: 100%;
        bottom: 16px;
                left: 0;
    }

    .custom-right-main.sucv.sec2 .mobileverification-right-content {
    gap: 6vh !important;
}

.custom-right-main.sucv .mobileverification-right-content {
    gap: 4vh !important;
}



}




@media(max-width:1024px){

      .mob.nik {
        padding: 0 25px;
        z-index: 99;
    }

  .quick.vid {
    width: auto !important;
     margin-left: 0vh !important;


}


  span.our {
    display: block;
    width: auto !important;
    margin-left: 0vh !important;
}

  .parag a {
    color: #0062FF !important;
}

  .right-content.up.parag.align_center p {
    text-align: center;
}

  .stp {
    display: block !important;
}

  ul.checkbox-list.accepts li {
    list-style: none;
    text-align: center;
}

  .parag p {
    font-family: "Poppins", Sans-serif;
    text-align: left;
    color: #000;
    font-size: 1.7vh;
    line-height: 2.5vh;
}

h1.signs.adv {
    line-height: 4vh;
    text-align: center !important;
        margin-bottom: 1vh !important;
        font-size: 3vh;
}



ul.points li {
    padding-left: 7vh;
}


.custom-right-main.logs {
    display: block !important;
}

  
.mob button{    font-size: 2vh!important;}

.otp_bold :disabled{    font-size: 1.9vh !important;}


  button.right-content-button{    font-size: 2vh !important; margin: 0 !important;}

  #step3 .msgbox.errormsg {
    margin-bottom: -3vh;
}

  .sec2 .right-content h1 {
    text-align: center !important;
}

   h1.signs {
    text-align: left !important;
}

    .right-content h1 {
        
        text-align: center ;
    }

  .logo_mob .right-content{padding-top: 0 !important;}

  .back {
    position: absolute;
    top: 2vh;
    left: 3vh;
    z-index: 9999;
}

  .logo_mob .logins {
        position: absolute;
        width: 100%;
        left: 0;
        top: 2vh !important;
    }


  .logo_mob h5{display: block !important;}


.sec2 .mobileverification-right-content {
    position: relative;
}



  .sec2 .msgbox.errormsg {
    margin: 0 !important;
    font-size: 1.5vh;
    font-family: "Poppins", Sans-serif;
    color: red;
   position: relative;
        margin-bottom: -5vh !important;
}

  .msgbox.errormsg {
    font-size: 1.5vh;
    font-family: "Poppins", Sans-serif;
    color: red;
}

  .mob.nik {
    padding: 0 25px;
}

  .code h4{left: 35% !important;}

  .toggle-password{bottom: 2vh !important;}


p.checkbox-content{    padding-top: 0.2vh !important;}



  .custom-right-main {
    width: 100% !important;}

  .custom-left-main {
        display: none !important;
    }


  .s_3 .input {
    height: 7vh !important;}

  .bordered-heading:before, .bordered-heading:after {
    height: 0.5px !important;
        box-sizing: border-box;
}

  h1.signs {
    margin-bottom: 4vh !important;
}

  h1.bordered-heading {
    margin: 0 !important;
}

  .bordered-heading:before, .bordered-heading:after{    width: 45% !important;}

h1.bordered-heading {
    font-size: 14px !important;
}

p.content-under-form {
    display: none !important;
}

.logins p {
    font-size: 16px !important;}

      .logins h5 {
        display: block !important;
        color: #2563EB;
        font-family: "Poppins", Sans-serif;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
    }


.custom-right-main{align-items: baseline !important;}

  

      .custom-right-content {
        display: flex;
        flex-direction: column;
        gap: 0 !important;
    }


.right-content input {
    
   
    color: #000;
    font-family: "Poppins", Sans-serif;
            font-size: 2vh !important;
        height: 6vh !important;
    
}


  .logins {
    position: relative;
    right: 0;
    top: 0px;
}

.right-content h1 {
    font-size: 32px;
    font-family: "Poppins", Sans-serif;
  
            margin-top: 2vh;
}

         .logins h2 {
        display: block !important;
        color: #342E59;
        font-size: 34px;
        font-family: "Poppins", Sans-serif;
        text-align: center;
        margin-bottom: 26px;
        font-weight: bold;
    }



.right-content {
    margin-left: 0vh !important;
    width: 100% !important;
    gap: 20px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    padding-bottom: 0 !important;
}


}


@media(max-width:1500px) and (min-width:768px){

  .iti__selected-country-primary {
    zoom: 0.7;
}

.iti--inline-dropdown .iti__dropdown-content {
    zoom: 0.7;
}



}



/*# sourceMappingURL=style.css.map */






header.sticky_header.absolute-position.elementor-section.elementor-top-section.elementor-element.elementor-element-4ebcaacf.elementor-section-full_width.elementor-section-height-default.elementor-section-height-default {
    display: none;
}
        .custom-main {
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            font-family: "Sora", Sans-serif;
        }

        .custom-left-main {
            width: 30%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            
            justify-content: end;
           
            background-image: url("http://tutortoday.io/wp-content/uploads/2024/06/leftbackground.jpg");
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            z-index: 10;
            padding: 3%;
            padding-bottom: 2%;
            background-size: cover;
            margin-right: -5%;
            overflow: hidden;
        }

        .content {
            text-align: center;
            color: #fff;
            padding: 10%;
        }

        p.content span {
    font-size: 1.5vh !important;
    color: #ffc42c !important;
}

        .custom-right-main {
            width: 70%;
            height: 100vh;
            background-image: url("http://tutortoday.io/wp-content/uploads/2024/06/sign-up-bg.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .right-content {
            margin-left: 7%;
            width: 300px;
            gap: 20px;
            display: flex;
            flex-direction: column;
        }

        .right-content-button {
            width: 100%;
            padding: 10px;
            border: 1px solid #C5C5C5;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .right-content-divider {
            width: 100%;
        }

        form {
            width: 100%;
            gap: 1.7vh;
            display: flex;
            flex-direction: column;
        }

        .form-input {
            border: 1px solid #C5C5C5;
            padding: 10px;
            border-radius: 5px;
            width: -webkit-fill-available;
        }

        .content-under-form {
            margin: 0px;
        }

        .statements {
            text-align: left;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 5px;
            margin-bottom: 2vh !important;
        }

        .checkbox-content {
            margin: 0px;
        }

        .checkbox-list {
            font-size: 12px;
            padding-left: 10px;
            margin: 5px 0px;
        }

        .create-account-button {
            width: 100%;
            padding: 10px;
            border: 2px solid black;
            border-radius: 50px;
            background: blue;
            color: white;
            margin-left: 7%;
            margin-top: 20px;
            cursor: pointer;
        }
        .googleimg{
            width: 15px;
            padding-right: 5px;
        }

        footer#colophon {
    display: none;
}
        @media screen and (max-width: 750px) {
            .custom-left-main {
                display: none;
            }

            .custom-right-main {
                width: 100%;
                background-image: url("http://tutortoday.io/wp-content/uploads/2024/06/mobilerightimage.jpg");
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
            }

            .right-content {
                margin-left: 0px;
            }

            .custom-right-content {
                display: flex;
                flex-direction: column;
                gap: 60px
            }

            .create-account-button {
                margin-left: 0%;
                margin-top: 0px;
            }
        }


