@charset "UTF-8";
.auth {
  height: 100vh;
  position: relative;
  z-index: 2;
}
.auth .profile-popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  inset: 0;
  z-index: 999;
}
.auth .profile-popup .back {
  background: rgba(0, 0, 0, 0.2509803922);
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.auth .profile-popup .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 30px;
  background: #fff;
  border-radius: 24px;
  max-width: 90%;
  width: 400px;
}
.auth .profile-popup .content .close {
  position: absolute;
  top: -20px;
  right: -20px;
  pointer-events: none;
}
.auth .message {
  color: #ff0000;
  display: none;
}
.auth .registration input.error {
  border: 1px solid #ff0000;
}
.auth .code-input {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.auth .code-input input {
  width: 18%;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 16px;
  text-align: center;
  font-size: 20px;
  outline: none;
  transition: 0.2s;
}
.auth .code-input input:focus {
  border-color: #3b82f6;
}
.auth .code-input.error input {
  border-color: #EB4335;
}
.auth .registration, .auth .login, .auth .card-check {
  width: 90%;
  min-width: 300px;
  max-width: 510px;
  position: relative;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  padding: 30px 70px;
  border-radius: 32px;
  background: #F7F7F7;
}
.auth .registration h3, .auth .login h3, .auth .card-check h3 {
  font-size: 2em;
  text-align: center;
}
.auth .registration .cost, .auth .login .cost, .auth .card-check .cost {
  margin: 20px 0 0;
  text-align: center;
}
.auth .registration .steps, .auth .login .steps, .auth .card-check .steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  color: #73767C;
}
.auth .registration .steps hr, .auth .login .steps hr, .auth .card-check .steps hr {
  rotate: 90deg;
  height: 30px;
  margin: 0px 20px;
  border: 1px solid rgba(15, 37, 62, 0.12);
}
.auth .registration .steps div, .auth .login .steps div, .auth .card-check .steps div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth .registration .steps div p, .auth .login .steps div p, .auth .card-check .steps div p {
  font-size: 0.7em;
  text-align: center;
  margin: 0;
}
.auth .registration .steps div p b, .auth .login .steps div p b, .auth .card-check .steps div p b {
  font-size: 1em;
}
.auth .registration .steps div p.big, .auth .login .steps div p.big, .auth .card-check .steps div p.big {
  font-size: 1.2em;
  font-weight: 600;
  color: rgba(15, 37, 62, 0.12);
}
.auth .registration .error-text, .auth .login .error-text, .auth .card-check .error-text {
  margin-top: -5px;
  color: #ff0000;
}
.auth .registration .continue, .auth .login .continue, .auth .card-check .continue {
  width: 100%;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #2BB06D;
}
.auth .registration p, .auth .login p {
  margin: 10px 0;
}
.auth .registration .tel-enter, .auth .login .tel-enter {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 12px;
  border: none;
}
.auth .registration .public-offert, .auth .login .public-offert {
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.auth .registration .public-offert input, .auth .login .public-offert input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #76787A;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.auth .registration .public-offert input.error, .auth .login .public-offert input.error {
  border-color: #ff0000;
}
.auth .registration .public-offert input:checked, .auth .login .public-offert input:checked {
  border: 1px solid #07F;
  background: #07F;
}
.auth .registration .public-offert, .auth .login .public-offert {
  /* Галочка через ::after */
}
.auth .registration .public-offert input:checked::after, .auth .login .public-offert input:checked::after {
  content: "";
  position: absolute;
  left: 3px; /* подбирается под размер чекбокса */
  top: -1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.auth .registration .public-offert a, .auth .login .public-offert a {
  color: #07F;
}
.auth .registration .switch, .auth .login .switch {
  width: 100%;
  font-size: 1.2em;
  color: #07F;
  margin: 20px 0;
  text-align: center;
  background: transparent;
  border: none;
}
.auth .registration .code-enter .grey, .auth .login .code-enter .grey {
  color: #6b6b6b;
  text-align: center;
  margin: 20px 0 0;
}
.auth .registration .code-enter span, .auth .login .code-enter span {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 0 30px;
}
.auth .registration .code-enter .send-again, .auth .login .code-enter .send-again {
  text-align: center;
  margin-top: 20px;
}
.auth .registration .code-enter .send-again span, .auth .login .code-enter .send-again span {
  margin: 0;
}
.auth .registration .code-enter .send-again button, .auth .login .code-enter .send-again button {
  width: 50%;
  padding: 10px;
  border-radius: 12px;
  background: #EAECF0;
  border: 0px;
}
.auth .registration .code-enter .message, .auth .login .code-enter .message {
  text-align: center;
}
.auth .registration .code-enter .switch, .auth .login .code-enter .switch {
  width: 100%;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #2BB06D;
}
.auth .registration .payment-switch, .auth .login .payment-switch {
  margin-bottom: 15px;
}
.auth .registration .switch-container, .auth .login .switch-container {
  position: relative;
  display: flex;
  background: #EEEFF3;
  border-radius: 10px;
  padding: 4px;
}
.auth .registration .switch-btn, .auth .login .switch-btn {
  flex: 1;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
}
.auth .registration .switch-btn:disabled, .auth .login .switch-btn:disabled {
  cursor: default;
}
.auth .registration .switch-btn.active, .auth .login .switch-btn.active {
  color: #fff;
}
.auth .registration .switch-slider, .auth .login .switch-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: #2BB06D;
  border-radius: 8px;
  transition: 0.3s;
}
.auth .login p {
  margin: 20px 0 10px;
}
.auth .card-check .sum {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  margin-top: 20px;
}
.auth .card-check .sum b {
  font-weight: 600;
}
.auth .card-check .card-info {
  margin-top: 20px;
  padding: 16px 24px;
  border-radius: 16px;
  background: #fff;
}
.auth .card-check .card-info .icons {
  display: flex;
  align-items: center;
}
.auth .card-check .card-info .icons img {
  width: 45px;
  object-fit: contain;
  margin: 0 5px;
}
.auth .card-check .card-info .icons img.mastercard {
  height: 26px;
}
.auth .card-check .card-info .icons img:first-child {
  margin-right: auto;
}
.auth .card-check .card-info input {
  width: 100%;
  background: #FAFAFA;
  border: none;
  padding: 14px 22px;
  border-radius: 12px;
  margin: 4px 0;
  outline: #07F123;
}
.auth .card-check .card-info input#card-date {
  width: 45%;
}
.auth .card-check .card-info input#card-cvv {
  width: 25%;
}
.auth .card-check .continue {
  margin-top: 20px;
}
.auth .payment-confirmation {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5647058824);
  top: 0;
  left: 0;
}
.auth .payment-confirmation .container {
  width: 90%;
  min-width: 300px;
  max-width: 510px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 70px;
  border-radius: 32px;
  background: #FFFFFF;
}
.auth .payment-confirmation .container .back {
  position: absolute;
  right: 20px;
  top: 15px;
  rotate: 45deg;
  font-size: 25px;
  background: #F7F7F7;
  padding: 0px 10px;
  border-radius: 50px;
  cursor: pointer;
}
.auth .payment-confirmation .container img {
  display: flex;
  margin: 0 auto 20px;
}
.auth .payment-confirmation .container p {
  margin: 15px 0;
  text-align: center;
}
.auth .payment-confirmation .container .info div {
  margin: 10px 0;
}
.auth .payment-confirmation .container .info p {
  text-align: left;
  color: #878787;
  margin: 0;
}
.auth .payment-confirmation .container .info p b {
  color: #222;
  font-size: 1.2em;
  font-weight: 600;
}
.auth .payment-confirmation .container .sms-send {
  font-size: 1.1em;
  margin: 20px 0;
  text-align: center;
  color: #0F253E;
}
.auth .payment-confirmation .container .sms-send span {
  display: block;
  font-weight: 600;
  font-size: 1em;
}
.auth .payment-confirmation .container .continue {
  width: 100%;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #008EFF;
}
.auth .contact-data .container {
  width: 90%;
  min-width: 300px;
  max-width: 610px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 70px;
  border-radius: 32px;
  background: #FAFAFA;
}
.auth .contact-data .container h3 {
  font-size: 2em;
  text-align: center;
}
.auth .contact-data .container .steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  color: #73767C;
}
.auth .contact-data .container .steps hr {
  rotate: 90deg;
  height: 30px;
  margin: 0px 20px;
  border: 1px solid rgba(15, 37, 62, 0.12);
}
.auth .contact-data .container .steps div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth .contact-data .container .steps div p {
  font-size: 0.7em;
  text-align: center;
  margin: 0;
}
.auth .contact-data .container .steps div p b {
  font-size: 1em;
}
.auth .contact-data .container .steps div p.big {
  font-size: 1.2em;
  font-weight: 600;
  color: rgba(15, 37, 62, 0.12);
}
.auth .contact-data .container .info div {
  margin: 20px 0;
}
.auth .contact-data .container .info div p {
  font-weight: 500;
}
.auth .contact-data .container .info div input {
  width: 100%;
  padding: 14px 20px;
  margin-top: 8px;
  background: #fff;
  border-radius: 12px;
  border: none;
}
.auth .contact-data .container .info div input::placeholder {
  color: #E3E3E3;
}
.auth .contact-data .container .continue {
  width: 100%;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #2BB06D;
}
.auth .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.auth .loading div {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.auth .loading div p {
  font-weight: 600;
}
.auth .loading div p:last-child {
  font-weight: 400;
  color: #878787;
}
.auth .loading svg {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 700px) {
  .auth input {
    background: #F7F7F7;
  }
  .auth .code-input input {
    height: 60px;
  }
  .auth .registration, .auth .login, .auth .card-check, .auth .contact-data .container {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
    padding: 20px 30px;
    background: unset;
    margin: 20px auto;
  }
  .auth .registration .code-input input, .auth .login .code-input input, .auth .card-check .code-input input, .auth .contact-data .container .code-input input {
    height: 60px;
  }
  .auth .card-check .card-info input#card-date {
    width: 60%;
  }
  .auth .card-check .card-info input#card-cvv {
    width: 30%;
  }
  .auth .payment-confirmation .container {
    padding: 30px 40px;
  }
  .auth .contact-data .container .info div input {
    background: #F7F7F7;
  }
}

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