body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: white;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
}

h2 {
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #34495e;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1rem;
}

small {
  display: block;
  margin-top: -10px;
  margin-bottom: 15px;
  color: red;
  font-weight: bold;
}

button {
  width: 100%;
  background-color: #2ecc71;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: rgba(237, 0, 27, 0.91);
}

.forgot-links {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #007BFF;
  cursor: pointer;
  text-align: center;
}

.forgot-links a {
  margin: 0 8px;
  text-decoration: underline;
  color: #007BFF;
}
