* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  height: 100vh !important;
  background-color: #81ecec !important;
}
.signup {
  padding: 30px;
  display: flex;
  flex-direction: column;
  background-color: #f5f6fa;
  border-radius: 10px;
  text-align: center;
}
.signup h1 {
  margin-bottom: 10px;
  font-family: sans-serif;
}
.signup input {
  width: 300px;
  border: none;
  border-radius: 5px;
  padding: 10px;
  margin-top: 20px;
  background-color: #eeeeee;
}
.signup button {
  background-color: #00a8ff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin: 25px 0px 20px 0px;
  color: white;
  font-size: large;
  font-weight: bold;
}
.signup button:hover {
  background-color: #0097e6;
}
.signup p {
  color: gray;
}
.signup p a {
  text-decoration: none;
  text-transform: uppercase;
  padding-left: 5px;
}
.signup p a:hover {
  text-decoration: underline;
}
