body {
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

body h2 {
  font-family: Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  color: #ff5c39;
}


p {
    font-family: Arial, sans-serif;
    text-align: center;
  color: #ff5c39;
}

textarea, input[type="text"], input[type="password"] {
  padding: 8px;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

button {
  background-color: #ff5c39;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #e94e2f;
}

a {
  color: #ff5c39;
  text-decoration: none;
  font-weight: bold;
}

.login-form {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

.login-form h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  color: #ff5c39;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;

  margin-bottom: 15px;

  border-radius: 4px;
  font-size: 15px;
}

.login-form button {
  width: 100%;
  background-color: #ff5c39;
  color: #fff;

  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.login-form button:hover {
  background-color: #e94e2f;
}

.login-form .error {
  color: red;
  text-align: center;
  margin-top: 10px;
}
