/* Auth pages — match Janosci storefront theme */
body.auth-page {
  font-family: 'Public Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f0fdf4 100%);
  color: #0a2540;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
}

body.auth-page .bottom-nav {
  display: none !important;
}

body.auth-page .auth-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 40px rgba(10, 37, 64, 0.08);
  overflow: hidden;
}

body.auth-page .btn-primary-auth {
  background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  width: 100%;
  min-height: 48px;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.auth-page .btn-primary-auth:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.3);
  color: #fff;
}

body.auth-page .form-control {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  min-height: 48px;
  font-size: 0.95rem;
}

body.auth-page .form-control:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

body.auth-page .auth-footer a,
body.auth-page a.text-primary {
  color: #10b981 !important;
  font-weight: 600;
}

@media (max-width: 480px) {
  body.auth-page {
    padding: 0.75rem;
    align-items: flex-start;
    padding-top: 2rem;
  }
  body.auth-page .auth-card {
    border-radius: 16px;
  }
}
