@charset "UTF-8";
/* SCSS для формы регистрации на планшете */
.sc-tablet-reg-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: inherit;
}
.sc-tablet-reg-wrapper .sc-tablet-reg-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
  text-align: center;
}
.sc-tablet-reg-wrapper .sc-tablet-reg-subtitle {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 18px;
  color: #718096;
  text-align: center;
}

.sc-tablet-reg-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sc-tablet-reg-field {
  display: flex;
  flex-direction: column;
}
.sc-tablet-reg-field input {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 22px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 1px;
}
.sc-tablet-reg-field input:focus {
  border-color: #3182ce;
}

.sc-tablet-reg-agreements {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px 0;
  padding: 20px;
  background: #f7fafc;
  border-radius: 12px;
}

.sc-tablet-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sc-tablet-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.sc-tablet-checkbox input:checked ~ .sc-tablet-checkbox-mark {
  background-color: #3182ce;
  border-color: #3182ce;
}
.sc-tablet-checkbox input:checked ~ .sc-tablet-checkbox-mark:after {
  display: block;
}
.sc-tablet-checkbox .sc-tablet-checkbox-mark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 2px solid #cbd5e0;
  border-radius: 6px;
  transition: all 0.2s;
}
.sc-tablet-checkbox .sc-tablet-checkbox-mark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.sc-tablet-checkbox .sc-tablet-checkbox-text {
  padding-left: 36px;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.4;
}
.sc-tablet-checkbox .sc-tablet-checkbox-text a {
  color: #3182ce;
  text-decoration: underline;
}

.sc-tablet-reg-btn {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.sc-tablet-reg-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.sc-tablet-reg-btn.sc-tablet-reg-btn-primary {
  background: #3182ce;
  color: #fff;
}
.sc-tablet-reg-btn.sc-tablet-reg-btn-primary:hover:not(:disabled) {
  background: #2b6cb0;
  transform: translateY(-2px);
}
.sc-tablet-reg-btn.sc-tablet-reg-btn-success {
  background: #38a169;
  color: #fff;
}
.sc-tablet-reg-btn.sc-tablet-reg-btn-success:hover:not(:disabled) {
  background: #2f855a;
  transform: translateY(-2px);
}

.sc-tablet-reg-timer-wrapper {
  font-size: 16px;
  color: #718096;
  margin-top: 15px;
  text-align: center;
}

.sc-tablet-reg-msg {
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

/* Окно успеха */
.sc-tablet-reg-success-window {
  max-width: 600px;
  margin: 40px auto;
  padding: 60px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(56, 161, 105, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.sc-tablet-reg-success-window .sc-tablet-reg-success-icon {
  margin-bottom: 24px;
  background: #f0fff4;
  padding: 20px;
  border-radius: 50%;
}
.sc-tablet-reg-success-window h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  color: #276749;
}
.sc-tablet-reg-success-window p {
  margin: 0;
  font-size: 20px;
  color: #4a5568;
  line-height: 1.5;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}/*# sourceMappingURL=store-cabinet-tablet-registration.css.map */