@charset "UTF-8";
input {
  all: unset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: all 5000s ease-in-out 0s;
}
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  width: 100% !important;
  box-sizing: border-box;
  font-family: Söhne, -apple-system, "system-ui", Helvetica, sans-serif;
  font-size: 16px;
  overflow: hidden;
}

.backRight {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background: #0c71ff;
}

.backLeft {
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  background: #0c71ff;
}

#back {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -999;
}

.canvas-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

#slideBox {
  width: 50%;
  max-height: 100%;
  height: 100%;
  overflow: hidden;
  margin-left: 50%;
  position: absolute;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.topLayer {
  width: 200%;
  height: 100%;
  position: relative;
  left: 0;
  left: -100%;
}

label {
  font-size: 16px;
 
}

input {
  background-color: rgb(249,249,249);
  border: 0;
  outline: 0;
  font-size: 16px;
  padding: 8px 1px;
  margin-top: 0.1em;
}

.left {
  width: 50%;
  height: 100%;
  overflow: auto;
  background-color: rgb(255, 255, 255) ;
  left: 0;
  position: absolute;
}

.left label {
  color: #212121;
}

.left input {
  
}

.left input:focus, .left input:active {
  border-color: #0c71ff;

}

.left input:-webkit-autofill {

  -webkit-text-fill-color: #e3e3e3;
}

.left a {
  color: #0c71ff;
}

.right {
  width: 50%;
  height: 100%;
  overflow: scroll;
  background: #f9f9f9;
  right: 0;
  position: absolute;
}
.right label {
  color: #212121;
}
.right input {

}
.right input:focus, .right input:active {
  border-color: #0c71ff;
}
.right input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #f9f9f9 inset;
  -webkit-text-fill-color: #212121;
}

.content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 80%;
  margin: 0 auto;
  position: relative;
  overflow: auto;
  align-items: center;
}

.content h2 {
  
  margin: 20px;
  font-family: Söhne, -apple-system, "system-ui", Helvetica, sans-serif;
  color: black;
  font-size: 32px;
  font-weight: 700;
}

.left .content h2 {
  color: black;
}

.right .content h2 {
  color: black;
}

.content h3 {
  font-weight: 400;
  font-size: 1.2em;
  margin: 0.2em 0 0.1em;
}

.left .content h3 {
  color: black;
}

.right .content h3 {
  color: black;
}

.content h4 {
  font-weight: 200;
  font-size: 0.9em;
  margin: 0.2em 0 0.1em;
}

.left .content h4 {
  color: black;
}

.right .content h4 {
  color: black;
}


.form-element {
  margin: 10px;
}
.form-element.form-submit {
  margin: 10px;
}

.form-stack {
  position: relative;
  display: flex;
  flex-direction: column;

}

.checkbox {
  -webkit-appearance: none;
  outline: none;
  background-color: #e3e3e3;
  border: 1px solid #e3e3e3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 12px;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.checkbox:focus, .checkbox:checked:focus,
.checkbox:active, .checkbox:checked:active {
  border-color: #03A9F4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.checkbox:checked {
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
}

.checkbox:checked:after {
  outline: none;
  content: "✓";
  color: #03A9F4;
  font-size: 1.4em;
  font-weight: 900;
  position: absolute;
  top: -4px;
  left: 4px;
}

.form-checkbox {
  display: flex;
  align-items: center;
}
.form-checkbox label {
  margin: 0 6px 0;
  font-size: 0.72em;
}

button {
  padding: 0.8em 1.2em;
  margin: 0 10px 0 0;
  width: auto;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1em;
  color: #fff;
  line-height: 1em;
  letter-spacing: 0.6px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
  border: 0;
  outline: 0;
  transition: all 0.25s;
}


button.signup {
  background: #0c71ff;
}
button.login {
  background: #0c71ff;
}
.login:hover{
  cursor: pointer;
}
.login.off:hover{
  cursor: pointer;
}
.signup:hover{
  cursor: pointer;
}
.signup.off:hover{
  cursor: pointer;
}
button.userinfo {
  background: #0c71ff;
  cursor: pointer;
}
button.billingInfo {
  background: #0c71ff;
  cursor: pointer;
}
.returntologin{

  color: #0c71ff;
  text-decoration: none; 
  cursor: pointer;
}
a.returntologin:hover{
background-color: rgb(227,227,227);
}

button.resendemail {
  background: #0c71ff;
  margin: none;
  cursor: pointer;
}
button.resendemail:hover{
  background: #095ed5;
  
}
.resendbuttonholder{
  display: flex;
  align-items: center;
  justify-content: center;
}
button.off {
  background: none;
  box-shadow: none;
  margin: 0;
}
button.off.signup {
  color: #0c71ff;
}
button.off.login {
  color: #0c71ff;
}

button:focus, button:active, button:hover {
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}
button:focus.signup, button:active.signup, button:hover.signup {
  background: #095ed5;
  color: #ffffff;
}
button:focus.login, button:active.login, button:hover.login {
  background: #095ed5;
}
button:focus.off, button:active.off, button:hover.off {
  box-shadow: none;
  
}
button:focus.off.signup, button:active.off.signup, button:hover.off.signup {
  color: #095ed5;
  background: #e3e3e3;
}
button:focus.off.login, button:active.off.login, button:hover.off.login {
  color: #095ed5;
  background: #e3e3e3;
}

@media only screen and (max-width: 768px) {
  #slideBox {
    width: 80%;
    margin-left: 20%;
  }
  .signup-info, .login-info {
    display: none;
  }
}

/*# sourceMappingURL=loginregstyles.css.map */
.oai-header{
  display: flex;
  justify-content: center;
  align-items:start;
}
.logintopbox{
  margin-top: 20px;
  height: 64px;
}
.loginbottombox{
  position: relative;
  top:200px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  
  align-items: center;
  flex-grow: .2;
}

.firstbottombox{
  position: relative;
  top:150px;
  min-height: 100%;
  display: flex;
  flex-direction: column;

  align-items: center;
  flex-grow: .2;
}

.forgotpassword{
  color:rgb(85, 85, 85);
}
.subscribebottombox{
  position: relative;
  top:100px;
  min-height: 100%;
  display: flex;
  flex-direction: column;

  align-items: inherit;
  flex-grow: 2;
}


.email-login{
  border: solid 1px rgb(194,200,208);
  font-size: 16px;
  border-radius: 6px;
  width: 320px;
  height: 32px;
  padding-left: 16px;
  background-color: white ;
}
#email-signup2.email-login{
  background-color: rgb(240, 240, 240) !important
}
#email-signup3.email-login{
  background-color: rgb(240, 240, 240) !important
}
.login-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-form-button-holder{
  width: fit-content;
}
.create-UserHolder{
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}
.signup-width{
  width : 200px;
}
.onb {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  padding: 32px
}

.onb-logo {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.onb-page {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-800);
  margin-top: 25vh
}

@media (max-height: 800px) {
  .onb-page {
    margin-top:20vh
  }
}

@media (max-height: 600px) {
  .onb-page {
    margin-top:80px
  }
}

.onb-page h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.375;
  margin-bottom: 8px;
  color: var(--gray-900)
}

@media (max-width: 500px) {
  .onb-page h1 {
    line-height:1.25
  }
}

.onb-page>p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0
}

.onb-page .nowrap {
  white-space: nowrap
}

.onb-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px
}

.onb-verify-email {
  width: 320px
}

.onb-email-button {
  font-size: 16px;
  margin-top: 32px
}

.onb-email-button .btn-label-inner:not(:first-child) {
  margin-left: 10px
}

@media (max-width: 800px) {
  .onb-email-button {
    display:none
  }
}

.onb-resend-email {
  margin-top: 20px
}

.onb-uinfo,.onb-email-input {
  width: 350px
}

.onb-uinfo-error {
  color: var(--red-500);
  padding-top: 12px;
  display: block
}

.onb-uinfo-terms {
  margin-top: 32px;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-600)
}

.onb-uinfo-form,.onb-email-input-form {
  margin-top: 24px
}

.onb-email-input-field {
  position: relative
}

.onb-email-input-sendverifylink {
  margin-top: 24px
}

.onb-uinfo-name,.onb-uinfo-org {
  position: relative
}

.onb-uinfo-helptext {
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-600);
  text-align: left;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  max-height: 0;
  transition: opacity .2s,max-height .2s,transform .2s
}

.onb-uinfo-helptext.visible {
  opacity: 1;
  padding-bottom: 8px;
  max-height: 200px
}

@media (min-width: 820px) {
  .onb-uinfo-helptext {
    transform:translateY(0);
    position: absolute;
    left: calc(100% + 32px);
    top: 0;
    width: 200px;
    max-height: auto
  }
}

.onb-uinfo-fieldset {
  position: relative
}

.onb-uinfo-continue {
  margin-top: 24px
}

.onb .onb-phone-send-form {
  width: 320px;
  max-width: 100%;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px
}

.onb .onb-phone-send-form .onb-form-error {
  padding-top: 12px
}

.onb .onb-whatsapp-optin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px
}

.onb .onb-whatsapp-optin-logo {
  margin: 0 1px -2px 5px
}

.onb .onb-whatsapp-logo {
  margin: 0 4px 1px 5px
}

.onb .onb-phone-check {
  width: 320px;
  margin: 0 auto
}

.onb .onb-phone-check-form {
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px;
  position: relative
}

.onb .onb-phone-check-form .onb-form-error {
  padding-top: 12px
}

.onb-credit-warning {
  width: 450px;
  margin: 0 auto
}

.onb-credit-warning p {
  margin-bottom: 16px;
  text-align: left
}

.onb .onb-resend-code {
  margin-top: 20px;
  opacity: 1;
  transition: opacity .2s
}

.onb-creating {
  width: 480px;
  min-height: 300px;
  position: relative
}

.onb-creating-spinner {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  font-size: 32px;
  opacity: 0;
  transition: opacity .2s
}

.onb-creating-spinner.visible {
  opacity: 1
}

.onb .onb-creating-error {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity .2s
}

.onb .onb-creating-error.visible {
  opacity: 1
}

.onb-creating-error-btn {
  margin-top: 24px
}

.onb-back-btn {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 14px;
  padding: 8px;
  opacity: 1;
  transition: opacity .2s
}

.onb-invisible {
  opacity: 0
}

.onb-form-error {
  display: flex;
  color: var(--red-500);
  text-align: left
}

.onb-form-error .onb-form-error-icon {
  flex: 0 0 auto;
  padding: 2px 6px 0 0
}

.onb-form-error .onb-form-error-msg {
  flex: 1 1 auto
}

.onb-form-error.onb-form-error-center {
  justify-content: center
}

.onb-form-error.onb-form-error-center .onb-form-error-msg {
  flex: 0 1 auto
}

.onb-form-error-help {
  text-align: left;
  margin-top: 12px
}

.onb-auth-error {
  width: 340px;
  line-height: 1.4
}

.onb-auth-error-wide {
  width: 550px
}

.onb-auth-error-msg {
  margin-top: 20px;
  font-size: 16px;
  color: var(--gray-900)
}

.onb-auth-error-footer {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 12px
}

.onb-homepage-link {
  font-size: 14px;
  margin-top: 12px
}

.onb-terms-link {
  text-decoration: underline
}

.OImuP[data-entering] {
  opacity: 0;
  transform: translate(12px)
}

.OImuP[data-entering-active],.OImuP[data-entering][data-interrupted] {
  opacity: 1;
  transform: translate(0);
  transition: opacity .15s ease-out,transform .15s ease-out
}

.OImuP[data-exiting] {
  opacity: 1;
  transform: translate(0);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

.OImuP[data-exiting-active],.OImuP[data-exiting][data-interrupted] {
  opacity: 0;
  transform: translate(-12px);
  transition: opacity .15s ease-out,transform .15s ease-out
}

.icon{ 
  display: flex;
  justify-content: center;
  margin-bottom:40px;

}

.success{
  justify-self:center ;
  position: relative;
  top:240px;
  width: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loginPageButtonsignupholder{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  column-gap: 10px;
  margin-left:15px;  
}

.loginPageButtonsignup{
  width: 100px;
  margin:0px;
  margin-top:0px;
 
}
#loginPageButton{
  width: 200px;
}

.email-login-forgot{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  margin: 0px;
  justify-content: center;


}

.email-login-forgot-input{
  align-self: center;

}
.forgotPasswordContent{
 margin-top: 20px;
  width: 40%;
  
}
.email-login-forgot-text{

  margin: 0px;
  margin-bottom: 10px;
  align-self: center;
  font-size: 26px;

}
.email-login-forgot-subtext{
  width: 80%;
  margin: 0px;
  margin-bottom: 10px;
  align-self: center;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}
.email-margin{
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  
  font-size: 32px;
  font-weight: 700;
}

.show-password-btn{
  position: absolute;
  right:10px;
  top:18px;
  color: #6a6a6a;
 
}
.password-wrapper{
  position: relative;
  width: fit-content;

}

.password-Reset-input{
  position: relative;
}


.return-link {
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
  color: #095ed5;;
  text-decoration: none;
  cursor: default;
}

a.return-link:hover{
  background-color: rgb(227,227,227);
}

.recoverPasswordInput{
  width: 300px;
}

.recoverPasswordForm{
  position: relative;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  top:240px;
}

.iconSuccess{
  color: rgb(54, 222, 96);
  font-size: 46px;
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 24

}
.iconSuccess i{ 
   font-size: 166px;
  }

  .subscriptionSuccessful{
    text-align : center;
    word-wrap: normal;

  }

.continueMessage{
 
  display: flex;
  margin-block-start: 20px;
  margin-block-end: 2px;
}
.form-info-holder{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-legalnotice{
  display: flex;
  flex-direction: column;
  height: 24px;
  margin-top: 0px;
  
}
.singuporreturnholder .signup{
  margin-left: 0px;
  margin-right: 0px;
}
.singuporreturnholder .signup{
  margin-left: 20px;
  margin-right: 0px;
}