.loader-container {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #A0A0F3;
  display: none;
}
.loader:before,
.loader:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}
.loader:after {
  color: #5E5EC0;
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes spin {
  0%,
  100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}
/* HTML: <div class="loader"></div> */
@font-face {
  font-family: 'Polin';
  src: url('../fonts/Polin-Light.woff2') format('woff2'), url('../fonts/Polin-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.not-found {
  display: flex;
  height: 100%;
}
.not-found .nf-left {
  width: 51%;
  padding: 88px 0 80px 80px;
  height: 100%;
}
.not-found .nf-left .nf-left-img {
  background-image: url('../images/not-found.png'), linear-gradient(180deg, #FFC854 0%, #FFF2D7 100%);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 40px;
  width: 100%;
  height: 100%;
}
.not-found .nf-right {
  width: 49%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.not-found .nf-right .nf-right-text .nf-right-text-header {
  color: var(--Style, #2D2E2A);
  font-family: Polin;
  font-size: 110px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 16px;
}
.not-found .nf-right .nf-right-text .nf-right-text-first {
  width: 562px;
  color: var(--Style, #2D2E2A);
  font-family: Polin;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 30px;
}
.not-found .nf-right .nf-right-text .nf-right-text-second {
  width: 575px;
  color: var(--Style, #2D2E2A);
  font-family: Polin;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 45px;
}
.not-found .nf-right .nf-right-text .nf-right-text-back {
  padding: 14px 34px;
  border-radius: 32px;
  background-color: #FFC956;
  color: var(--Style, #2D2E2A);
  text-align: center;
  font-family: Polin;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: fit-content;
  height: 64px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .not-found .nf-left {
    width: 51%;
    padding: 30px 0 34px 30px;
    height: 100%;
  }
  .not-found .nf-left .nf-left-img {
    background-image: url('../images/not-found-1400.png'), linear-gradient(180deg, #FFC854 0%, #FFF2D7 100%);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    width: 100%;
    height: 100%;
  }
  .not-found .nf-right .nf-right-text .nf-right-text-header {
    color: var(--Style, #2D2E2A);
    font-family: Polin;
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 20px;
  }
  .not-found .nf-right .nf-right-text .nf-right-text-first {
    width: 312px;
    color: var(--Style, #2D2E2A);
    font-family: Polin;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 20px;
  }
  .not-found .nf-right .nf-right-text .nf-right-text-second {
    width: 312px;
    color: var(--Style, #2D2E2A);
    font-family: Polin;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 29px;
  }
  .not-found .nf-right .nf-right-text .nf-right-text-back {
    padding: 11px 24px;
    border-radius: 32px;
    background-color: #FFC956;
    color: var(--Style, #2D2E2A);
    text-align: center;
    font-family: Polin;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    width: fit-content;
    height: 48px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
}
@media screen and (max-width: 750px) {
  .not-found {
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: fit-content;
  }
  .not-found .nf-left {
    width: 100%;
    padding: 20px;
    height: 350px;
  }
  .not-found .nf-left .nf-left-img {
    background-image: url('../images/not-found-750.png'), linear-gradient(180deg, #FFC854 0%, #FFF2D7 100%);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    width: 100%;
    height: 100%;
  }
  .not-found .nf-right {
    width: 100%;
  }
  .not-found .nf-right .nf-right-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .not-found .nf-right .nf-right-text .nf-right-text-header {
    color: var(--Style, #2D2E2A);
    font-family: Polin;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 20px;
  }
  .not-found .nf-right .nf-right-text .nf-right-text-first {
    width: unset;
    max-width: 354px;
    color: var(--Style, #2D2E2A);
    text-align: center;
    font-family: Polin;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 20px;
  }
  .not-found .nf-right .nf-right-text .nf-right-text-second {
    width: unset;
    max-width: 354px;
    color: var(--Style, #2D2E2A);
    text-align: center;
    font-family: Polin;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 34px;
  }
  .not-found .nf-right .nf-right-text .nf-right-text-back {
    padding: 10px 24px;
    border-radius: 32px;
    background-color: #FFC956;
    color: var(--Style, #2D2E2A);
    text-align: center;
    font-family: Polin;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    width: fit-content;
    height: 45px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
}
@media screen and (max-width: 350px) {
  .not-found .nf-right .nf-right-text .nf-right-text-first {
    color: var(--Style, #2D2E2A);
    text-align: center;
    font-family: Polin;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 280px;
  }
  .not-found .nf-right .nf-right-text .nf-right-text-second {
    color: var(--Style, #2D2E2A);
    text-align: center;
    font-family: Polin;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 280px;
    margin-bottom: 20px;
  }
}
.webapp-auth-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5E5EC0 0%, #4a4a9a 100%);
  padding: 20px;
}
.webapp-auth-page .auth-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 650px;
  width: 100%;
  padding: 48px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .webapp-auth-page .auth-container {
    padding: 32px 24px;
    max-width: 100%;
  }
}
.webapp-auth-page .auth-container .auth-header {
  text-align: center;
  margin-bottom: 40px;
}
.webapp-auth-page .auth-container .auth-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 8px 0;
  font-family: 'Poppins', sans-serif;
}
.webapp-auth-page .auth-container .auth-header p {
  font-size: 16px;
  color: #718096;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
.webapp-auth-page .auth-container .auth-iframe-container {
  width: 100%;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.webapp-auth-page .auth-container .auth-iframe-container iframe {
  width: 100%;
  border: none;
  background: transparent;
  min-height: 400px;
  height: auto;
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .placeholder-button {
  width: 100%;
  max-width: 400px;
  height: 56px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  font-family: 'Poppins', sans-serif;
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .placeholder-button:hover {
  border-color: #5E5EC0;
  background: #f7fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(94, 94, 192, 0.15);
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .placeholder-button.google:hover {
  border-color: #4285f4;
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .placeholder-button.salesforce:hover {
  border-color: #00a1e0;
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .placeholder-button.email {
  background: #5E5EC0;
  color: #ffffff;
  border-color: #5E5EC0;
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .placeholder-button.email:hover {
  background: #4a4a9a;
  border-color: #4a4a9a;
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .placeholder-button svg {
  width: 24px;
  height: 24px;
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .divider {
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0;
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .divider::before,
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .divider span {
  font-size: 14px;
  color: #a0aec0;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}
.webapp-auth-page .auth-container .auth-fields-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.webapp-auth-page .auth-container .auth-fields-container .otp-container {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-label {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-input-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-input-container .otp-slot {
  position: relative;
  width: 48px;
  height: 56px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #2d3748;
  background: #ffffff;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}
.webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-input-container .otp-slot:focus-within {
  border-color: #5E5EC0;
  box-shadow: 0 0 0 3px rgba(94, 94, 192, 0.1);
}
.webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-input-container .otp-slot .otp-caret {
  position: absolute;
  width: 2px;
  height: 24px;
  background: #5E5EC0;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
.webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-error {
  color: #e53e3e;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-submit-btn {
  width: 100%;
  max-width: 300px;
  height: 48px;
  background: #5E5EC0;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
.webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-submit-btn:hover:not(:disabled) {
  background: #4a4a9a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(94, 94, 192, 0.3);
}
.webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.webapp-auth-page .auth-container .auth-footer {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: #718096;
  font-family: 'Poppins', sans-serif;
}
.webapp-auth-page .auth-container .auth-footer a {
  color: #5E5EC0;
  text-decoration: none;
  font-weight: 600;
}
.webapp-auth-page .auth-container .auth-footer a:hover {
  text-decoration: underline;
}
.webapp-auth-page .noca-auth {
  cursor: pointer;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.192);
  border-radius: 8px;
  width: 304px;
}
@media (max-width: 768px) {
  .webapp-auth-page {
    padding: 16px;
  }
  .webapp-auth-page .auth-container {
    border-radius: 12px;
  }
  .webapp-auth-page .auth-container .auth-header {
    margin-bottom: 32px;
  }
  .webapp-auth-page .auth-container .auth-header h1 {
    font-size: 24px;
  }
  .webapp-auth-page .auth-container .auth-header p {
    font-size: 14px;
  }
  .webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-input-container {
    gap: 8px;
  }
  .webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-input-container .otp-slot {
    width: 40px;
    height: 48px;
    font-size: 20px;
  }
  .webapp-auth-page .auth-container .auth-fields-container .otp-container .otp-submit-btn {
    height: 44px;
    font-size: 14px;
  }
  .webapp-auth-page .auth-container .auth-iframe-container {
    min-height: 350px;
  }
  .webapp-auth-page .auth-container .auth-iframe-container iframe {
    min-height: 350px;
  }
  .webapp-auth-page .auth-container .auth-iframe-container .iframe-placeholder .placeholder-button {
    height: 48px;
    font-size: 14px;
  }
}
@font-face {
  font-family: 'Polin';
  src: url('../fonts/Polin-Light.woff2') format('woff2'), url('../fonts/Polin-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
html,
body {
  height: 100%;
  min-height: 100%;
}
#root {
  height: 100%;
}
body {
  padding: 0px;
}
.main-page {
  background: none;
}
.main-sign-wrap {
  display: flex;
  height: 100vh;
}
.main-sign-wrap input,
.main-sign-wrap .MuiInputBase-input {
  font-family: Polin !important;
}
.main-left {
  width: 50%;
  background-image: url('../images/sign-background.png'), linear-gradient(180deg, #5e5ec0 0%, #835ec0 86%, #a15ec0 96.5%);
  background-size: cover;
}
.main-left.sign-in {
  background-image: url('../images/sign-in-background.png'), linear-gradient(180deg, white 0%, white 86%, white 96.5%);
  background-position: center;
  background-repeat: no-repeat;
}
.main-left.sign-up {
  background-image: url('../images/sign-up-background.png'), linear-gradient(180deg, white 0%, white 86%, white 96.5%);
  background-position: center;
  background-repeat: no-repeat;
}
.main-left.blocked {
  background-image: url('../images/blocked-background.png'), linear-gradient(180deg, white 0%, white 86%, white 96.5%);
  background-position: center;
  background-repeat: no-repeat;
}
.main-left.human {
  background-image: url('../images/human-background.png'), linear-gradient(180deg, #FFD575 0.27%, #FFF 76.81%);
  background-position: center;
  background-repeat: no-repeat;
}
.main-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/sign-right.png'), linear-gradient(180deg, white 0%, white 86%, white 96.5%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-right.human {
  align-items: stretch;
  overflow-y: scroll;
}
.sign-in-wrap {
  width: 320px;
  margin: 0px auto;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  translate: 0 -5%;
}
.sign-in-wrap.overflow-visible {
  overflow: visible;
}
.sign-in-wrap.human {
  translate: none;
}
.sign-in-wrap.human .error-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.sign-in-wrap.human .error-wrap .instruction {
  font-size: 24px;
}
.sign-in-wrap .icon-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sign-in-wrap .mobile-background {
  display: none;
}
.sign-in-wrap .sign-welcome {
  color: rgba(0, 0, 0, 0.8);
  font-family: Polin;
  font-size: 22px;
  font-weight: 300;
  line-height: normal;
  margin: 0;
  margin-bottom: 84px;
}
.sign-in-wrap .up {
  margin-bottom: 52px;
}
.sign-in-wrap .check {
  margin-bottom: 44px;
}
.sign-in-wrap .g-service {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 50px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(94, 94, 192, 0.5);
  background: #fff;
  margin: 0 auto;
  margin-bottom: 28px;
  text-decoration: none;
  font-family: Polin;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.sign-in-wrap .g-service a {
  text-decoration: none;
}
.sign-in-wrap .g-service p {
  margin: 0;
  color: #000;
  text-decoration: none;
}
.sign-in-wrap .select-wrap > div {
  width: 100%;
}
.sign-in-wrap > .center {
  text-align: center;
}
.sign-in-wrap > .center a {
  color: #1976d2;
}
.sign-in-wrap > .center .instruction {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: Polin;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
}
.sign-in-wrap .human-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}
.sign-in-wrap .human-center .header {
  color: var(--Style, #2D2E2A);
  text-align: center;
  font-family: Polin;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 30px;
  margin-top: 50px;
}
.sign-in-wrap .human-center .human-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 480px;
}
.sign-in-wrap .human-center .human-body .service-block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  margin-bottom: 15px;
}
.sign-in-wrap .human-center .human-body .service-block .service-img {
  border: 1px solid #A5A5A566;
  border-radius: 20px;
}
.sign-in-wrap .human-center .human-body .service-block span {
  color: #000;
  font-family: Polin;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}
.sign-in-wrap .human-center .human-body .text-block {
  color: var(--Style, #2D2E2A);
  font-family: Polin;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 30px;
}
.sign-in-wrap .human-center .human-body .info-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
.sign-in-wrap .human-center .human-body .info-block .info-item {
  display: flex;
}
.sign-in-wrap .human-center .human-body .info-block .info-item .info-name {
  color: #000;
  font-family: Polin;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  width: 160px;
}
.sign-in-wrap .human-center .human-body .info-block .info-item .info-value {
  color: #000;
  font-family: Polin;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sign-in-wrap .human-center .human-body .sub-header {
  color: var(--Style, #2D2E2A);
  font-family: Polin;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 18px;
}
.sign-in-wrap .human-center .human-body table,
.sign-in-wrap .human-center .human-body th,
.sign-in-wrap .human-center .human-body td {
  border: 1px solid #D6D6D6;
  border-collapse: collapse;
  box-sizing: border-box;
}
.sign-in-wrap .human-center .human-body th {
  padding: 11px 13px;
  color: #2D2E2A;
  line-height: 140%;
  text-align: start;
}
.sign-in-wrap .human-center .human-body td {
  width: 240px;
  padding: 11px 13px;
  color: #2D2E2A;
  font-family: Polin;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: start;
}
.sign-in-wrap .human-center .human-body table {
  margin-bottom: 50px;
}
.sign-in-wrap .human-center .actions {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
}
.sign-in-wrap .human-center .actions .accept-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 109px;
  height: 43px;
  border: none;
  border-radius: 43px;
  background-color: #4EC956;
  color: var(--ffffff, #FFF);
  text-align: center;
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
  cursor: pointer;
}
.sign-in-wrap .human-center .actions .reject-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 109px;
  height: 43px;
  border: none;
  border-radius: 43px;
  background-color: #ED5757;
  color: var(--ffffff, #FFF);
  text-align: center;
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
  cursor: pointer;
}
.sign-in-wrap .login-input {
  min-width: 320px;
}
.sign-in-wrap .choose-error-message {
  color: red;
  font-family: Polin;
}
.sign-in-wrap .sign-input {
  margin-bottom: 20px;
}
.sign-in-wrap .sign-input.sign-input-choose {
  margin-bottom: 34px;
}
.sign-in-wrap .sign-input .MuiInputLabel-root {
  transform: none;
  position: relative;
  color: #000;
  font-family: Polin;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  translate: 0 -4px;
}
.sign-in-wrap .sign-input .Mui-error .MuiOutlinedInput-notchedOutline {
  border-radius: 6px;
  border: 1px solid rgba(105, 105, 105, 0.5);
}
.sign-in-wrap .sign-input .MuiInputBase-root {
  border-radius: 6px;
  background-color: #fff;
}
.sign-in-wrap .sign-input .MuiInputBase-root {
  height: 50px;
  box-sizing: border-box;
}
.sign-in-wrap .sign-input .MuiInputBase-root svg {
  translate: -16px 0px;
  poPolin-events: none;
}
.sign-in-wrap .sign-error-container {
  width: 100%;
  font-size: 12px;
  font-family: 'Polin';
  color: red;
  line-height: normal;
}
.sign-in-wrap .terms-checkbox-container {
  margin-bottom: 20px;
  width: 100%;
}
.sign-in-wrap .terms-checkbox-container .terms-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.sign-in-wrap .terms-checkbox-container .terms-checkbox-wrapper .terms-checkbox {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(105, 105, 105, 0.5);
  border-radius: 6px;
  background: #FFFFFF;
  cursor: pointer;
  appearance: none;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.sign-in-wrap .terms-checkbox-container .terms-checkbox-wrapper .terms-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5055 0.386947C12.6895 -0.79699 14.5426 1.00465 13.3072 2.18859L5.89471 9.65254C5.37995 10.1158 4.60782 10.1158 4.09306 9.65254L0.386825 5.89483C-0.797112 4.71089 1.00453 2.90925 2.18847 4.09318L5.01962 6.92434L11.5055 0.386947Z' fill='%238080D7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.sign-in-wrap .terms-checkbox-container .terms-checkbox-wrapper .terms-label {
  font-family: 'Polin';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #2D2E2A;
  cursor: pointer;
  flex: 1;
  position: relative;
  top: 4px;
}
.sign-in-wrap .terms-checkbox-container .terms-checkbox-wrapper .terms-label .terms-link {
  color: #8080D7;
  text-decoration: underline;
  cursor: pointer;
}
.sign-in-wrap .terms-checkbox-container .terms-checkbox-wrapper .terms-label .terms-link:hover {
  color: #6B6BC7;
}
.sign-in-wrap .terms-checkbox-container .terms-error {
  font-family: 'Polin';
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #ff2929;
  margin-top: 10px;
  display: block;
}
.sign-in-wrap .sign-button-container {
  margin-bottom: 32px;
}
.sign-in-wrap .sign-button-container .sign-button {
  width: 320px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #5e5ec0;
  background: #5e5ec0;
  color: #fff;
  font-family: Polin;
  font-size: 17px;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}
.sign-in-wrap .sign-button-container .sign-button:disabled {
  background: rgba(94, 94, 192, 0.3);
  cursor: default;
}
.sign-in-wrap .line-decorated {
  text-align: center;
  margin: 0;
  color: #000;
  font-family: Polin;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.53;
  margin-bottom: 32px;
}
.sign-in-wrap .line-decorated > span {
  position: relative;
  display: inline-block;
  margin: 0;
}
.sign-in-wrap .line-decorated > span:before,
.sign-in-wrap .line-decorated > span:after {
  content: '';
  position: absolute;
  top: 50%;
  border-bottom: 1px solid #b3b3b3;
  width: 160px;
  margin: 0 10px;
}
.sign-in-wrap .line-decorated > span:before {
  right: 100%;
}
.sign-in-wrap .line-decorated > span:after {
  left: 100%;
}
.sign-in-wrap .no-account {
  display: flex;
  flex-wrap: nowrap;
  color: #000;
  font-family: Polin;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.33;
}
.sign-in-wrap .no-account p {
  margin: 0;
  font-weight: 300;
}
.sign-in-wrap .form-row {
  display: flex;
  column-gap: 30px;
}
.block-title {
  max-width: 388px;
  width: 388px;
  height: fit-content !important;
  translate: 0 -5% !important;
}
.block-title .instruction {
  max-width: 388px;
  width: 388px;
}
.block-title .instruction span {
  color: #482AFFCC;
  text-decoration: underline;
  cursor: pointer;
}
.block-title .icon-head {
  margin-bottom: 40px !important;
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  .main-left {
    display: none;
  }
  .main-right {
    width: 100%;
  }
  .main-right.blocked {
    flex-direction: column;
  }
  .main-right.sign-in {
    flex-direction: column;
  }
  .main-right.sign-in .sign-in-wrap {
    margin-bottom: 46px;
  }
  .main-right.sign-up {
    flex-direction: column;
  }
  .main-right.sign-up form {
    margin-bottom: 46px;
  }
  .main-right.sign-up .sign-in-wrap .icon-head {
    margin-top: 36px;
  }
  .main-right .main-bottom {
    background-size: cover;
    height: 100%;
    width: 100%;
  }
  .main-right .main-bottom.blocked {
    background-image: url('../images/blocked-m-background.png');
    background-position: center;
    background-repeat: no-repeat;
  }
  .main-right .main-bottom.sign-in {
    background-image: url('../images/sign-in-m-background.png');
    background-position: center;
    background-repeat: no-repeat;
  }
  .main-right .main-bottom.sign-up {
    background-image: url('../images/sign-up-m-background.png');
    background-position: center;
    background-repeat: no-repeat;
  }
  .sign-in-wrap {
    translate: 0 0;
  }
  .sign-in-wrap .mobile-background {
    display: block;
    width: 320px;
    height: 203px;
    background-image: url('../images/signin-background-mobile.png'), linear-gradient(180deg, #5e5ec0 0%, #835ec0 86%, #a15ec0 96.5%);
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 19px;
  }
  .sign-in-wrap .icon-head {
    width: 320px;
    height: fit-content;
    margin-bottom: 19px;
    margin-top: 83px;
  }
  .sign-in-wrap .sign-welcome {
    margin-bottom: 36px;
  }
  .sign-in-wrap .sign-input .MuiInputLabel-root {
    translate: 0 -6px;
  }
  .sign-in-wrap.block-title {
    height: 100% !important;
    translate: 0 !important;
    width: 100vw;
  }
  .sign-in-wrap.block-title .icon-head {
    margin-bottom: 40px !important;
  }
}
.sign-few-inputs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.code-input {
  width: 31px;
  height: 50px;
  font-size: 17px;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  border: 1px solid #69696980;
  border-radius: 6px;
}
.back-to-login {
  font-family: 'Polin';
  font-size: 15px;
  font-weight: 300;
  cursor: poPolin;
  margin-left: 5px;
  color: #482AFF;
  text-decoration: underline;
}
