/* body.css – Authentication & utility pages */

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  margin: 0 auto;
  padding: 2rem 1rem;
  line-height: 1.6;
}

h1 {
  color: #1a2b4c;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.alert, .message {
  padding: clamp(0.5rem, 16px, 2.5rem);
  margin-bottom: 1.5rem;
  border-radius: 8px;
  font-weight: 500;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #2dc653;
}

.error, .danger {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #e63946;
}

.warning {
  background-color: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffbe0b;
}

.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #3a86ff;
}

input, button {
  width: 100%;
  padding: clamp(0.5rem, 12px, 2rem) clamp(0.5rem, 16px, 2.5rem);
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: clamp(0.5rem, 16px, 2.5rem);
  box-sizing: border-box;
}

input:focus {
  outline: none;
  border-color: #3a86ff;
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

button, input[type="submit"] {
  background-color: #3a86ff;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover, input[type="submit"]:hover {
  background-color: #1e5bbf;
}

a {
  color: #3a86ff;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.errors {
  color: #e63946;
  font-size: clamp(0.6rem, 14.4px, 2.4rem);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  list-style: none;
  padding-left: 0;
}