/* Auth pages styling */

.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 24px 20px;
  background: var(--white);
}

.auth-card {
  width: 100%;
  max-width: 400px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--black);
}

.auth-logo p {
  font-size: 15px;
  color: var(--gray);
  margin-top: 4px;
}

.auth-form {
  margin-bottom: 24px;
}

.auth-form .form-group {
  margin-bottom: 16px;
}

.auth-form .btn-primary {
  margin-top: 8px;
}

.auth-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.auth-footer a {
  color: var(--gray);
}

.auth-footer a:hover {
  color: var(--black);
}

.password-rules {
  font-size: 12px;
  color: var(--light-gray);
  margin-top: 4px;
  line-height: 1.6;
}

.password-rules span {
  display: block;
}

.password-rules span.valid {
  color: var(--green);
}
