.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--light);
}

.auth-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 500px;
  width: 100%;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h1 {
  color: var(--maroon);
  margin-bottom: 10px;
  font-size: 2rem;
}

.auth-header p {
  color: var(--text-light);
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-weight: 500;
}

.auth-form .form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  transition: var(--transition);
}

.auth-form .form-control:focus {
  border-color: var(--maroon);
  outline: none;
  box-shadow: 0 0 0 2px rgba(123, 30, 45, 0.1);
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.auth-footer a {
  color: var(--maroon);
  font-weight: 500;
  transition: var(--transition);
}

.auth-footer a:hover {
  text-decoration: underline;
}

.alert {
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert i {
  font-size: 1.2rem;
}

.alert-danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.btn-block {
  width: 100%;
  margin-bottom: 15px;
}

.forgot-password-link {
  color: var(--maroon);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  margin-top: 10px;
}

.forgot-password-link:hover {
  text-decoration: underline;
  color: #6a1927;
}