.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 70vh;
  background: #f9f9f9;
}

.auth-container {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.auth-container h2 {
  margin-bottom: 20px;
  color: #001b5e;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.form-group input {
  width: 93.5%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
}

.btn {
  background: var(--primary-color);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background 0.3s;
}

.btn:hover {
  background: #005bb5;
}

.switch-auth {
  margin-top: 15px;
  font-size: 14px;
}

.switch-auth a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.switch-auth a:hover {
  text-decoration: underline;
}
.alert {
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
}
.alert-success {
  background: #d4edda;
  color: #155724;
}
.alert-error {
  background: #f8d7da;
  color: #721c24;
}
