/* Minimal auth form styles to sit on top of existing site theme */
:root {
  --auth-bg: #f6f7fb;
  --auth-card-bg: #ffffff;
  --auth-border: rgba(21, 23, 31, 0.06);
}

.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: var(--auth-bg);
  min-height: calc(100vh - 140px); /* leave room for header/footer */
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--auth-card-bg);
  border: 1px solid var(--auth-border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(18, 24, 32, 0.06);
}

.auth-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.auth-form .form-group {
  margin-bottom: 12px;
}
.auth-form .form-control {
  height: 44px;
  padding: 10px 12px;
}
.auth-form .form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.auth-form .btn-link {
  font-size: 0.9rem;
}

/* small screens */
@media (max-width: 575px) {
  .auth-card {
    padding: 20px;
    border-radius: 8px;
  }
  .auth-title {
    font-size: 1.1rem;
  }
}

/* utility tweaks to match site CTA look */
.btn-primary {
  background: linear-gradient(90deg, #b8860b, #ffd27a);
  border: 0;
}
