/* Login & Register pages â ARSO + UNBS theme */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f5ec 0%, #d4edda 30%, var(--unbs-blue-light) 60%, rgba(168, 212, 232, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.auth-wrapper {
  width: 100%;
  max-width: 440px;
}

.auth-wrapper-wide {
  max-width: 420px;
}

.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(26, 124, 61, 0.1);
  border: 1px solid rgba(168, 212, 232, 0.5);
}

.auth-card-wide {
  max-width: 640px;
  margin: 0 auto;
}

.auth-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-logo img {
  height: 72px;
  width: auto;
  display: block;
  margin: 0 auto 0.75rem;
}

.auth-logo h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.auth-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

.auth-form .form-label {
  font-weight: 500;
  color: #374151;
}

.auth-form .form-control,
.auth-form .form-select {
  border-radius: 10px;
  border: 1px solid #e5efe8;
}

.auth-form .form-control:focus,
.auth-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.auth-form .btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.65rem;
}

.auth-form .btn-primary:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

.auth-footer {
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #374151;
}

.auth-footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.alert-danger {
  border-radius: 10px;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.alert-success {
  border-radius: 10px;
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-dark);
}
