body {
  background: #a6caca;
}

* {
  font-family: "Nunito Sans", sans-serif;
}

.logo {
  border-radius: 50%;
  height: 120px;
  width: 120px;
}

.login-container {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 60%;
  aspect-ratio: 3 / 4;
  background: white;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 40px 0;
  box-sizing: border-box;
  border-radius: 30px;
}

.login-container button {
  height: 30px;
  width: calc(100% - 65px);
  padding: 5px 10px;
  background: black;
  color: white;
  border: none;
  border-radius: 50px;
}

.field {
  display: flex;
  flex-direction: column;
  width: 80%;
}

.field input {
  width: 100%;
  height: 30px;
  border-radius: 50px;
  border: 1px solid black;
  padding: 5px 10px;
  box-sizing: border-box;
}