/* Notifi — Auth pages */

.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #eaf1fd 0%, #f8faff 55%, #fff9ea 100%);
  padding: 1.5rem;
}

.auth-card {
  width: 400px;
  max-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.25rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.auth-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%);
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.auth-tagline {
  text-align: center;
  color: var(--text-secondary);
  font-size: 13.5px;
  margin-bottom: 1.75rem;
}

.auth-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 12.5px;
  color: var(--text-muted);
}
