/* Login-specific styles */
body {
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.login-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
  margin-bottom: 10px;
}

.logo h2 {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
}

.form-control {
  margin-bottom: 15px;
}

.form-check {
  margin-bottom: 15px;
}

.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.text-center a {
  color: #007bff;
}

.text-center a:hover {
  text-decoration: underline;
}