* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100vh;
  background: #001660;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  background: white;
  display: flex;
  flex-direction: column;
  padding: 12px;
  width: 90%;
  max-width: 600px;
  border-radius: 7px;
}

form h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

form input,
form select,
form textarea {
  border: 1px solid black;
  margin: 7px 0;
  padding: 7px;
  outline: none;
  background: #f5f5f5;
  font-size: 16px;
}

form button {
  padding: 15px;
  background: green;
  color: white;
  font-size: 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  border-radius: 10px;
  margin-bottom: 10px;
}

form .reset {
  background: red;
}
