html, body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;

  background-image: url("../media/icons/login-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  font-family: Arial, sans-serif;

  display: flex;
  justify-content: center;
  align-items: center;

  outline: 5px solid red;
}


.login-box {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  transform: translateY(-40px); 
  overflow: hidden;
}

input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  border: none;
}

button {
  width: 100%;
  padding: 10px;
  background: #4caf50;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

#error {
  color: red;
  margin-top: 10px;
}
