body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  margin: 0;
}

.wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.loginContainer {
  padding: 100px;
  width: 100%;
  max-width: 800px;
  border: 1px solid #dedede;
  background-color: rgb(238, 242, 244);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

form {
  display: flex;
  flex-direction: column;
}

input[type="text"],
[type="email"],
[type="password"] {
  height: 40px;
  margin-bottom: 20px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #36d6e7;
  background-color: #f2f2f2;
}

input[type="submit"] {
  font-size: 20px;
  height: 50px;
  background-color: #36d6e7;
  color: #ffff;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
}
