* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: rgb(246, 239, 239);
}
#main {
  border: 1px solid;
  border-radius: 10px;
  height: 300px;
  width: 500px;
  margin: 130px auto;;
  background-color: white;
  padding-top: 20px;
  box-shadow: 0 0 5px gray;
  border: 0;
}
h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-align: center;
  margin-bottom: 20px;
}
form {
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
label {
  display: block;
  margin-bottom: 10px;
}
input {
  display: block;
  width: 200px;
  margin: 0 auto;
  height: 30px;
  margin-bottom: 10px;
  padding-left: 10px;
}
button {
  color: white;
  background-color: rgba(43, 43, 181, 0.879);
  height: 35px;
  width: 150px;
  border: 0;
  border-radius: 5px;
  font-size: 15px;
  margin-top: 10px;
  cursor: pointer;
}
h2 {
  text-align: center;
  margin-top: 20px;
  font-family: monospace;
}