body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: crimson;
  color: white;
  font-family: sans-serif;
}
.main {
  padding: 5px 0;
  text-align: center;
}
input {
  display: flex;
  flex-direction: column;
}
.inputs input {
  border: none;
  border-radius: 5px;
  padding: 1rem 10rem;
  margin-bottom: 10px;
}

#selectOpt {
  margin-bottom: 10px;
  padding: 10px;
  outline: none;
}

#btn {
  border: none;
  background: transparent;
  color: white;
  padding: 10px 20px;
  border: 2px solid white;
  margin-top: 10px;
  cursor: pointer;
}
#btn:hover {
  border-color: rgb(182, 204, 224);
}
#btn:active {
  opacity: 0.7;
}
