:root {
  --auth-page-bg: #f5f7fb;
  --auth-panel-bg: #ffffff;
  --auth-input-bg: #ffffff;
  --auth-primary: #635bff;
  --auth-primary-dark: #5148e8;
  --auth-primary-light: #eeecff;
  --auth-secondary: #7c3aed;
  --auth-text: #18181b;
  --auth-text-secondary: #52525b;
  --auth-text-muted: #71717a;
  --auth-text-light: #a1a1aa;
  --auth-border: #e4e4e7;
  --auth-border-hover: #c7c7d1;
  --auth-border-focus: #635bff;
  --auth-error: #dc2626;
  --auth-error-bg: #fef2f2;
  --auth-success: #16a34a;
  --auth-success-bg: #f0fdf4;
  --auth-shadow:
      0 24px 60px rgba(15, 23, 42, 0.08);
  --auth-shadow-small:
      0 8px 25px rgba(15, 23, 42, 0.06);
  --auth-radius-lg: 24px;
  --auth-radius-md: 12px;
  --auth-radius-sm: 8px;
  --auth-transition:
      220ms cubic-bezier(0.4, 0, 0.2, 1);
  --auth-slider-transition:
      480ms cubic-bezier(0.65, 0, 0.35, 1);
  --bg-alert: #ffffff;
  --text-alert: #000;
}

.custom-alert {
  position: fixed;
  top: 10px;
  left: 70%;
  transform: translateX(-50%) translateY(-20px);
  background-color: var(--bg-alert);
  border-left: 20px solid #ff4d4f;
  padding: 12px 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  width: fit-content;
  min-width: 350px;
  max-width: 400px;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.3s ease-in-out;
  display: flex;
  gap: 5px;
  -webkit-transform: translateX(-50%) translateY(-20px);
  -moz-transform: translateX(-50%) translateY(-20px);
  -ms-transform: translateX(-50%) translateY(-20px);
  -o-transform: translateX(-50%) translateY(-20px);
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}
.custom-alert span {
  width: 90%;
  line-height: 1.5;
  font-size: 14px;
  color: var(--text-alert);
}
.custom-alert.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  -webkit-transform: translateX(-50%) translateY(0);
  -moz-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  -o-transform: translateX(-50%) translateY(0);
}
.custom-alert.error {
  border-left: 20px solid #ff4d4f;
}
.custom-alert.error button {
  color: #ff4d4f;
}
.custom-alert.info, .custom-alert.advice {
  border-left: 20px solid #e9a135;
}
.custom-alert.info button, .custom-alert.advice button {
  color: #e9a135;
}
.custom-alert.success {
  border-left: 20px solid #41c170;
}
.custom-alert.success button {
  color: #41c170;
}
.custom-alert button {
  background: transparent;
  outline: none;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.custom-alert button:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

@media (max-width: 768px) {
  .custom-alert {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 400px;
    padding: 10px 12px;
    font-size: 13px;
    border-left-width: 10px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .custom-alert span {
    width: 100%;
    font-size: 13px;
    text-align: left;
    line-height: 1.4;
  }
  .custom-alert button {
    font-size: 20px;
    width: 26px;
    height: 26px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--auth-page-bg);
  color: var(--auth-text);
  font-family: var(--font-inter);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

input {
  margin: 0;
}

::selection {
  background: rgba(99, 91, 255, 0.18);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--auth-page-bg);
}

.page-loader .loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-loader .loader-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.auth-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  background: var(--auth-page-bg);
}

.auth-brand {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 50px 30px 30px;
  color: #ffffff;
  background: radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.12), transparent 30%), radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12), transparent 35%), linear-gradient(145deg, #5548e8 0%, #6757ed 45%, #855cf1 100%);
}

.auth-brand::before,
.auth-brand::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.auth-brand::before {
  width: 520px;
  height: 520px;
  top: -270px;
  right: -180px;
}

.auth-brand::after {
  width: 420px;
  height: 420px;
  bottom: -260px;
  left: -220px;
}

.auth-brand-content {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.auth-brand-logo {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  font-size: 1.9rem;
  font-weight: 700;
  gap: 12px;
}
.auth-brand-logo img {
  width: fit-content;
  height: 50px;
}

.auth-brand-title {
  margin: 0 0 30px;
  max-width: 560px;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 800;
}

.auth-brand-description {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

.auth-brand-languages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.auth-brand-language {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.auth-area {
  width: 50%;
  min-height: 100vh;
  margin-left: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 70px 30px;
  background: var(--auth-panel-bg);
  overflow-y: auto;
}

.auth-content {
  width: 100%;
  max-width: 500px;
}

.auth-viewport {
  width: 100%;
  overflow: hidden;
}

.auth-slider,
.reset-pass-container {
  width: 100%;
  position: relative;
}

.auth-slide {
  display: none;
  padding: 4px;
  width: 100%;
}
.auth-slide.reset {
  margin-top: 70px;
}

body.login-mode .login {
  display: block;
  animation: authSlideIn 0.35s ease;
}

body.sign-mode .sign {
  display: block;
  animation: authSlideIn 0.35s ease;
}

body.verify-mode .verify {
  display: block;
  animation: authSlideIn 0.35s ease;
}

body.reset-mode .reset {
  display: block;
  animation: authSlideIn 0.35s ease;
}

@keyframes authSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.auth-header {
  margin-bottom: 20px;
}

.auth-title {
  margin: 30px 0 20px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.8px;
  font-weight: 750;
  color: #434175;
}

.auth-subtitle {
  margin: 0;
  color: var(--auth-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.auth-form {
  width: 100%;
}

.auth-field {
  width: 100%;
}

.auth-label {
  display: block;
  margin-bottom: 8px;
  color: var(--auth-text-secondary);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.auth-input-wrap {
  position: relative;
  width: 100%;
}

.pass-input-wrapp {
  margin-bottom: 20px;
}
.pass-input-wrapp input {
  padding-right: 50px;
}
.pass-input-wrapp .toggle-visibility {
  display: none;
  right: 15px;
  position: absolute;
  top: 50%;
  padding: 5px;
  cursor: pointer;
  font-size: 1rem;
  transform: translateY(-50%);
}
.pass-input-wrapp .toggle-visibility svg {
  width: 18px;
  height: 18px;
  color: #413e3e;
}
.pass-input-wrapp .toggle-visibility svg:first-of-type {
  display: none;
}
.pass-input-wrapp .toggle-visibility svg:last-of-type {
  display: block;
}
.pass-input-wrapp .toggle-visibility.open svg:first-of-type {
  display: block;
}
.pass-input-wrapp .toggle-visibility.open svg:last-of-type {
  display: none;
}
.pass-input-wrapp .toggle-visibility.visible {
  display: block;
}

.auth-input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid var(--auth-border);
  outline: none;
  background: var(--auth-input-bg);
  color: var(--auth-text);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: border-color var(--auth-transition), box-shadow var(--auth-transition), background-color var(--auth-transition);
}

.auth-input::placeholder {
  color: var(--auth-text-light);
}

.auth-input:hover {
  border-color: var(--auth-border-hover);
}

.auth-input:focus {
  border-color: var(--auth-border-focus);
}

.auth-error {
  min-height: 1px;
  margin: 10px 2px;
  color: var(--auth-error);
  font-size: 12px;
  line-height: 1.4;
}

.auth-input.invalid {
  border-color: var(--auth-error);
  background: var(--auth-error-bg);
}

.auth-submit {
  position: relative;
  width: 100%;
  height: 50px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--auth-radius-md);
  background: linear-gradient(135deg, var(--auth-primary), var(--auth-secondary));
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(99, 91, 255, 0.2);
  transition: transform var(--auth-transition), box-shadow var(--auth-transition), opacity var(--auth-transition);
}

.auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(99, 91, 255, 0.26);
}

.auth-submit:active {
  transform: translateY(0);
}

.auth-submit:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.auth-submit .circle,
.google-button .circle {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: auth-spin 0.7s linear infinite;
}

.auth-submit.loading .circle,
.google-button.loading .circle {
  display: block;
}

.auth-submit.loading > span:not(.circle),
.google-button.loading > span:not(.circle) {
  display: none;
}

@keyframes auth-spin {
  to {
    transform: rotate(360deg);
  }
}
.auth-legal-wrapp {
  display: flex;
  align-items: center;
  margin: 10px 5px 13px;
  gap: 10px;
  color: var(--auth-text-muted);
  font-size: 0.85rem;
}
.auth-legal-wrapp a {
  color: var(--auth-primary);
}
.auth-legal-wrapp .checkbox-container {
  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.auth-legal-wrapp .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.auth-legal-wrapp .checkbox-container input:checked + .checkmark {
  background-color: var(--auth-primary);
  border-color: var(--auth-primary);
}
.auth-legal-wrapp .checkbox-container input:checked + .checkmark::after {
  display: block;
}
.auth-legal-wrapp .checkbox-container .checkmark {
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  display: flex;
  align-items: center;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  -moz-transition: background-color 0.2s, border-color 0.2s;
  -ms-transition: background-color 0.2s, border-color 0.2s;
  -o-transition: background-color 0.2s, border-color 0.2s;
}
.auth-legal-wrapp .checkbox-container .checkmark::after {
  content: "\f272";
  position: absolute;
  display: none;
  font-family: "bootstrap-icons";
  font-weight: bold;
  color: white;
  font-size: 0.9rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--auth-border);
}

.auth-divider span {
  color: var(--auth-text-light);
  font-size: 12px;
  font-weight: 500;
}

.google-button {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--auth-border);
  border-radius: var(--auth-radius-md);
  background: var(--auth-input-bg);
  color: var(--auth-text);
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: background-color var(--auth-transition), border-color var(--auth-transition), transform var(--auth-transition);
}

.google-button:hover {
  border-color: var(--auth-border-hover);
  background: var(--auth-page-bg);
  transform: translateY(-1px);
}

.google-button:active {
  transform: translateY(0);
}

.google-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-icon svg {
  width: 20px;
  height: 20px;
}

.google-text {
  line-height: 1;
}

.auth-switch {
  text-align: end;
  color: var(--auth-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.auth-switch button {
  margin-left: 4px;
  padding: 0;
  background: transparent;
  color: var(--auth-primary);
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
}

.auth-switch button:hover {
  text-decoration: underline;
}

.auth-forgot {
  display: flex;
  justify-content: flex-end;
  margin: -8px 0 20px;
}

.auth-forgot button {
  padding: 0;
  background: transparent;
  color: var(--auth-primary);
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.auth-forgot button:hover {
  text-decoration: underline;
}

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  color: var(--auth-text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--auth-transition);
}

.auth-back:hover {
  color: var(--auth-primary);
}

.verify-content {
  width: 100%;
}

.verify-icon {
  width: 70px;
  height: 60px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--auth-primary-light);
  color: var(--auth-primary);
  font-size: 25px;
}
.verify-icon svg {
  width: 26px;
  height: 26px;
}

.verify-message {
  margin: 0 0 24px;
  color: var(--auth-text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.verify-email {
  display: inline-block;
  margin-top: 4px;
  color: var(--auth-text);
  font-weight: 700;
  word-break: break-word;
}

.verify-code {
  display: flex;
  gap: 9px;
  width: 100%;
  margin: 8px 0 20px;
}

.verify-code input {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0;
  border: 1px solid var(--auth-border);
  border-radius: 10px;
  outline: none;
  background: var(--auth-input-bg);
  color: var(--auth-text);
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  transition: border-color var(--auth-transition), box-shadow var(--auth-transition);
}

.verify-code input:focus {
  border-color: var(--auth-primary);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.1);
}

.verify-resend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 18px;
  color: var(--auth-text-muted);
  font-size: 12px;
}

.verify-resend button {
  padding: 0;
  background: transparent;
  color: var(--auth-primary);
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
}

.verify-resend button:disabled {
  color: var(--auth-text-light);
  cursor: not-allowed;
}

.verify-timer {
  color: var(--auth-text-light);
  font-variant-numeric: tabular-nums;
}

.auth-success {
  margin: 12px 0;
  padding: 11px 13px;
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 9px;
  background: var(--auth-success-bg);
  color: var(--auth-success);
  font-size: 12px;
  line-height: 1.5;
}

.reset-description {
  margin: 0 0 26px;
  color: var(--auth-text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.reset-success {
  text-align: center;
}

.reset-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--auth-success-bg);
  color: var(--auth-success);
  font-size: 27px;
}

.reset-success h2 {
  margin: 0 0 10px;
  color: var(--auth-text);
  font-size: 25px;
}

.reset-success p {
  margin: 0;
  color: var(--auth-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.auth-message {
  min-height: 9px;
  margin: 0 2px 0;
  color: var(--auth-text-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.auth-message.error {
  color: var(--auth-error);
}

.auth-message.success {
  color: var(--auth-success);
}

.auth-submit:focus-visible,
.google-button:focus-visible,
.auth-switch button:focus-visible,
.auth-forgot button:focus-visible,
.auth-back:focus-visible,
.verify-resend button:focus-visible {
  outline: 3px solid rgba(99, 91, 255, 0.25);
  outline-offset: 3px;
}

.auth-input:focus-visible {
  outline: none;
}

@media (max-width: 768px) {
  .auth-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .auth-brand {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 40px 24px;
  }
  .auth-brand-content {
    width: 100%;
    max-width: 570px;
  }
  .auth-brand-logo {
    margin-bottom: 32px;
    font-size: 1.1rem;
  }
  .auth-brand-title {
    max-width: 100%;
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
  }
  .auth-brand-description {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
  }
  .auth-brand-languages {
    margin-top: 26px;
    gap: 8px;
  }
  .auth-brand-language {
    padding: 7px 11px;
    font-size: 12px;
  }
  .auth-area {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    padding: 36px 20px 40px;
    overflow-y: visible;
  }
  .auth-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .auth-slide {
    padding: 2px;
  }
  .auth-slide.reset {
    margin-top: 30px;
  }
  .auth-title {
    margin: 20px 0 16px;
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
  .auth-subtitle {
    font-size: 14px;
    line-height: 1.55;
  }
  .auth-input {
    height: 50px;
    padding: 0 14px;
    font-size: 15px;
  }
  .auth-submit,
  .google-button {
    height: 50px;
  }
  .auth-divider {
    gap: 10px;
    margin: 22px 0;
  }
  .auth-switch {
    font-size: 12px;
  }
  .auth-forgot {
    margin: -6px 0 18px;
  }
  .verify-icon {
    width: 62px;
    height: 56px;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .verify-icon svg {
    width: 24px;
    height: 24px;
  }
  .verify-message {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
  }
  .verify-code {
    gap: 6px;
    margin: 8px 0 18px;
  }
  .verify-code input {
    height: 50px;
    font-size: 19px;
  }
  .verify-resend {
    gap: 10px;
    margin-top: 16px;
    font-size: 11px;
  }
  .reset-description {
    margin-bottom: 22px;
    font-size: 13px;
  }
  .reset-success-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    font-size: 24px;
  }
  .reset-success h2 {
    font-size: 22px;
  }
  .reset-success p {
    font-size: 13px;
  }
  .auth-back {
    margin-bottom: 22px;
    font-size: 12px;
  }
  .auth-message {
    font-size: 11px;
  }
  .checkbox-container .checkmark {
    height: 17px;
    width: 17px;
  }
  .checkbox-container .checkmark::after {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .auth-brand {
    padding: 32px 20px;
  }
  .auth-brand-logo {
    margin-bottom: 26px;
    font-size: 1.4rem;
  }
  .auth-brand-title {
    font-size: 2.2rem;
  }
  .auth-brand-description {
    font-size: 14px;
  }
  .auth-brand-languages {
    margin-top: 22px;
  }
  .auth-brand-language {
    padding: 6px 10px;
    font-size: 11px;
  }
  .auth-area {
    padding: 30px 16px 34px;
  }
  .auth-title {
    font-size: 1.6rem;
  }
  .verify-code {
    gap: 5px;
  }
  .verify-code input {
    height: 48px;
    font-size: 18px;
    border-radius: 8px;
  }
}

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