body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  background-image: url("https://i.redd.it/itygra9nty361.png");
}

h1 {
  text-align: center;
  color: #333333;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

label {
  font-size: 16px;
  margin-bottom: 5px;
  color: #333333;
  background-color: #26a69a;
  padding: 5px 10px;
  border-radius: 5px;
  display: block;
  margin-top: 10px;
  width: 50%;
  text-align: center;
  
}

input[type="text"],
input[type="password"] {
  width: 50%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

button[type="button"] {
  width: 20%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
  background-color: #188e92;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease-in-out;
}

button[type="button"]:hover {
  background-color: #000000;
}

#error {
  color: #ef5350;
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}
