* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Funnel Sans", sans-serif;
  line-height: 1.6;
  color: #2f2f2f;
  background: #fafafa;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::selection {
  background: rgba(47, 47, 47, 0.3);
  color: #2f2f2f;
  border-radius: 4px;
}

::-moz-selection {
  background: rgba(47, 47, 47, 0.3);
  color: #2f2f2f;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 576px) {
  .hide-mobile {
    display: none !important;
  }
}

input,
textarea,
select {
  font-size: 16px;
}
@media (max-width: 576px) {
  input,
  textarea,
  select {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 0.9375rem;
  }
  button,
  .btn-primary,
  .btn-secondary {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.125rem;
  }
}
body.page-no-scroll {
  overflow-y: hidden;
}
body.page-no-scroll .main-wrapper {
  height: calc(100vh - 3.5rem);
  overflow: hidden;
}

.suspended-overlay {
  position: fixed;
  top: 3.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  z-index: 100;
}

.suspended-overlay-content {
  text-align: center;
  max-width: 420px;
  padding: 2rem;
}
.suspended-overlay-content svg {
  color: #EF4444;
  margin-bottom: 1rem;
}
.suspended-overlay-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 0.75rem;
}
.suspended-overlay-content p {
  color: #6e6e6e;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.suspended-support-link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #2f2f2f;
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.suspended-support-link:hover {
  background: #000000;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.spinner-small {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  margin-bottom: 1rem;
}

.text-muted {
  color: #6e6e6e;
}

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

.toast-success {
  position: fixed;
  bottom: 2rem;
  left: calc(50% + 1.75rem);
  transform: translateX(-50%);
  background-color: #10B981;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10000;
  animation: toastSlideUp 0.3s ease;
}
.toast-success code {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.8125rem;
  margin-left: 0.25rem;
}
.toast-success.fade-out {
  animation: toastFadeOut 0.3s ease forwards;
}

.toast-error {
  position: fixed;
  bottom: 2rem;
  left: calc(50% + 1.75rem);
  transform: translateX(-50%);
  background-color: #EF4444;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10000;
  animation: toastSlideUp 0.3s ease;
}
.toast-error.fade-out {
  animation: toastFadeOut 0.3s ease forwards;
}

.toast-warning {
  position: fixed;
  bottom: 2rem;
  left: calc(50% + 1.75rem);
  transform: translateX(-50%);
  background-color: #f59e0b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10000;
  animation: toastSlideUp 0.3s ease;
}
.toast-warning.fade-out {
  animation: toastFadeOut 0.3s ease forwards;
}

@keyframes toastSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes toastFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (max-width: 480px) {
  .toast-success,
  .toast-error,
  .toast-warning {
    left: 50%;
    max-width: calc(100% - 2rem);
    text-align: center;
  }
}
.auth-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  margin-left: 0;
  margin-top: 0;
  overflow: hidden;
}

.auth-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(110, 110, 110, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(110, 110, 110, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 120% 70% at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 120% 70% at 50% 0%, black 20%, transparent 70%);
  pointer-events: none;
}

.auth-container::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 47, 47, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26rem;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.auth-card.ready {
  opacity: 1;
  transform: translateY(0);
}

.auth-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0.25rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.auth-subtitle {
  font-size: 0.875rem;
  color: #6e6e6e;
  text-align: center;
  margin-bottom: 1.25rem;
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.auth-logo .auth-logo-img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.auth-logo span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f2f2f;
}
.auth-logo:hover {
  opacity: 0.8;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2f2f2f;
}

.form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #2f2f2f;
  background-color: #fafafa;
  transition: all 0.2s ease;
}
.form-input::placeholder {
  color: #6e6e6e;
}
.form-input:focus {
  outline: none;
  border-color: #2f2f2f;
  box-shadow: 0 0 0 3px rgba(47, 47, 47, 0.1);
}
.form-input.error {
  border-color: #e74c3c;
}
.form-input.success {
  border-color: #27ae60;
}

.form-help {
  font-size: 0.75rem;
  color: #6e6e6e;
}

.form-error {
  display: none;
  font-size: 0.75rem;
  color: #e74c3c;
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.password-input-wrapper input {
  padding-right: 3rem;
}

.toggle-password {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e6e6e;
  transition: color 0.2s ease;
}
.toggle-password:hover {
  color: #2f2f2f;
}
.toggle-password.active {
  color: #2f2f2f;
}
.toggle-password .eye-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.password-strength {
  margin-top: 0.25rem;
}

.password-strength-bar {
  width: 100%;
  height: 3px;
  background-color: #e0e0e0;
  border-radius: 0.125rem;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.password-strength-fill {
  height: 100%;
  width: 0;
  transition: all 0.3s ease;
  border-radius: 0.125rem;
}
.password-strength-fill.weak {
  background-color: #e74c3c;
}
.password-strength-fill.medium {
  background-color: #F59E0B;
}
.password-strength-fill.strong {
  background-color: #27ae60;
}

.password-strength-text {
  font-size: 0.6875rem;
  font-weight: 600;
}

.form-message {
  padding: 0.625rem 0.875rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
}
.form-message.error {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.2);
}
.form-message.success {
  background-color: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.2);
}
.form-message.hidden {
  display: none;
}

.auth-container .btn-primary {
  width: 100%;
  padding: 0.75rem 1.25rem;
  background-color: #2f2f2f;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  box-shadow: 0 4px 14px rgba(47, 47, 47, 0.25);
}
.auth-container .btn-primary:hover:not(:disabled) {
  background-color: #1b1b1b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 47, 47, 0.3);
}
.auth-container .btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.auth-container .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.auth-container .btn-primary .btn-text,
.auth-container .btn-primary .btn-loader {
  display: inline-flex;
  align-items: center;
}
.auth-container .btn-primary .btn-loader.hidden {
  display: none;
}
.auth-container .btn-primary .btn-text.hidden {
  display: none;
}

.auth-footer {
  margin-top: 1rem;
  text-align: center;
}
.auth-footer p {
  font-size: 0.8125rem;
  color: #6e6e6e;
}

.auth-link {
  color: #2f2f2f;
  text-decoration: none;
  font-size: inherit;
  font-weight: 600;
  transition: color 0.2s ease;
}
.auth-link:hover {
  color: #161616;
  text-decoration: underline;
}

.forgot-password-link {
  font-size: 0.8125rem;
  color: #6e6e6e;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  margin-top: 0.25rem;
}
.forgot-password-link:hover {
  color: #2f2f2f;
  text-decoration: underline;
}

.verification-code-input {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5rem;
  text-align: center;
  padding: 1rem;
}

.terms-agreement {
  font-size: 0.75rem;
  color: #6e6e6e;
  text-align: center;
  margin: 0.25rem 0;
}
.terms-agreement a {
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 500;
}
.terms-agreement a:hover {
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e0e0e0;
}
.auth-divider span {
  padding: 0 0.75rem;
  font-size: 0.75rem;
  color: #6e6e6e;
  text-transform: lowercase;
}

.google-signin-container {
  display: flex;
  justify-content: center;
}
.google-signin-container .g_id_signin {
  width: 100%;
}
.google-signin-container .g_id_signin > div {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

@media (max-width: 640px) {
  .auth-card {
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
  }
  .auth-title {
    font-size: 1.5rem;
  }
  .form-input,
  .verification-code-input {
    font-size: 16px;
  }
}
.register-pro-container {
  padding: 1.5rem 1rem;
}

.register-pro-card {
  max-width: 30rem;
}

.rp-plan-section {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.rp-billing-toggle {
  display: flex;
  gap: 0;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.rp-toggle-btn {
  flex: 1;
  padding: 0.625rem 1rem;
  background: none;
  border: none;
  font-family: "Funnel Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6e6e6e;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.rp-toggle-btn.active {
  background: #ffffff;
  color: #2f2f2f;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.rp-save-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 1rem;
}

.rp-order-summary {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

.rp-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: #2f2f2f;
}

.rp-order-tokens {
  color: #6e6e6e;
}

.rp-order-bonus span:last-child {
  color: #22c55e;
  font-weight: 600;
}

.rp-order-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 0.5rem 0;
}

.rp-order-total {
  font-weight: 700;
  font-size: 0.9375rem;
}

.rp-payment-section {
  margin-bottom: 1rem;
}

.rp-payment-element {
  margin-bottom: 0.25rem;
}

.rp-payment-errors {
  margin-top: 0.375rem;
  min-height: 0;
  color: #e74c3c;
  font-size: 0.75rem;
}

.rp-submit-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.rp-google-note {
  font-size: 0.75rem;
  color: #6e6e6e;
  text-align: center;
  margin: 0.5rem 0 0;
}

.error-page {
  background-color: #fafafa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.error-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-icon {
  margin-bottom: 1.5rem;
  color: #6e6e6e;
}
.error-icon svg {
  width: 80px;
  height: 80px;
  stroke-width: 1.5;
}
.error-icon.error-icon-warning {
  color: #f59e0b;
}

.error-code {
  font-size: 7rem;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0;
  line-height: 1;
  letter-spacing: -4px;
}
@media (max-width: 576px) {
  .error-code {
    font-size: 5rem;
  }
}

.error-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2f2f2f;
  margin: 1rem 0 0.5rem;
}
@media (max-width: 576px) {
  .error-title {
    font-size: 1.5rem;
  }
}

.error-message {
  font-size: 1rem;
  color: #6e6e6e;
  margin: 0 0 2rem;
  line-height: 1.6;
  max-width: 360px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.error-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.error-btn.error-btn-primary {
  background-color: #2f2f2f;
  color: #ffffff;
}
.error-btn.error-btn-primary:hover {
  background-color: #1b1b1b;
  transform: translateY(-1px);
}
.error-btn.error-btn-secondary {
  background-color: #f5f5f5;
  color: #2f2f2f;
  border: 1px solid #e0e0e0;
}
.error-btn.error-btn-secondary:hover {
  background-color: #ededed;
  border-color: #c7c7c7;
  transform: translateY(-1px);
}

.error-footer {
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.error-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #6e6e6e;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.error-logo img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}
.error-logo:hover {
  color: #2f2f2f;
}

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