body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login-box {
  background: white;
  border: 3px solid #e4002b;
  border-radius: 12px;
  padding: 20px;
  width: 90%;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.login-box h2 {
  color: #e4002b;
  margin-bottom: 20px;
}
input {
  width: 80%;
  padding: 12px;
  margin: 10px 0;
  border: 2px solid #e4002b;
  border-radius: 6px;
  font-size: 16px;
}
button {
  width: 100%;
  padding: 12px;
  background: #e4002b;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
button:hover {
  background: #c10023;
    }
  .error {
  margin-top: 10px;
  color: red;
  font-weight: bold;
}

a {
      display: inline-block;
      margin-top: 15px;
      color: white;
      background: #e4002b;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 6px;
    }