
/* Auth pages */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid #E9E9E9;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  padding: 2rem;
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.auth-brand .logo-dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #FCB117; /* matches accent seen in navbar floating actions */
  display: inline-flex;
  align-items:center;
  justify-content:center;
  color: #fff;
  font-weight: 700;
}
.auth-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.auth-subtitle {
  margin: .25rem 0 1.5rem 0;
  color: #6b7280;
  font-size: .95rem;
}
.form-control, .form-select {
  border-radius: 12px;
  border-color: #E9E9E9;
}
.form-control:focus {
  border-color: #FCB117;
  box-shadow: 0 0 0 .25rem rgba(154,63,239,.15);
}
.btn-primary {
  background-color: #FCB117;
  border-color: #FCB117;
  border-radius: 12px;
  font-weight: 600;
}
.btn-primary:hover {
  filter: brightness(.95);
}
.auth-footer {
  margin-top: 1rem;
  color: #6b7280;
  font-size: .9rem;
}
.auth-footer a { text-decoration: none; }
.input-group-text {
  border-radius: 12px;
  border-color: #E9E9E9;
  background: #f3f4f6;
}
.small-muted {
  color: #6b7280;
  font-size: .85rem;
}

.btn:hover {
    color: #FFF;
    background-color: #808C4A;
    border-color: #808C4A;
}

