* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container-cadastro {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #00bcd4;
  width: max-content;
  border-radius: 10px;
  font-size: 1.2rem;
  text-align: left;
}

form h1 {
  margin-bottom: 20px;
}

form div {
  display: flex;
  flex-direction: column;
}

input {
  width: 300px;
  height: 40px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  padding-left: 10px;
  font-size: 1.2rem;
}

input[type=submit]{
  background-color: #16425B;
  color: #fff;
  cursor: pointer;
}