/* ---- Auth Pages ---- */
.auth-body {
  background: linear-gradient(135deg, #0000eb 0%, #000080 50%, #000000 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.auth-register-wrapper { max-width: 860px; }

.auth-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-card-wide { padding: 2.5rem; }

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0000eb;
  margin-bottom: 0.4rem;
}

.auth-tagline {
  color: #6b7280;
  font-size: 0.88rem;
  margin: 0;
}

.auth-logo {
  height: 50px;
  margin-bottom: 0.75rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .form-control {
  padding-left: 2.5rem;
}

.input-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.875rem;
  pointer-events: none;
}

.toggle-password {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 0.875rem;
}

.toggle-password:hover { color: #0000eb; }

.forgot-link {
  font-size: 0.82rem;
  color: #0000eb;
  font-weight: 600;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: #d1d5db;
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.auth-divider span {
  padding: 0 0.75rem;
  color: #9ca3af;
}

.auth-register-link {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

.auth-register-link a {
  color: #0000eb;
  font-weight: 700;
}

@media (max-width: 768px) {
  .auth-card-wide { padding: 1.5rem; }
}
