
body {
  font-family: Arial, sans-serif;
  background-color: #333;
  color: #fff;
  margin: 0;
  padding: 0;
}

.login-container {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 20px;
  background-color: #444;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 35px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  
}


.alert-error {
  color: red;
  margin-bottom: 10px;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  font-size: 24px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #333;
}

.form-group button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-group button:hover {
  background-color: #0056b3;
}
