* {
  margin: 0;
  padding-top:0;
  box-sizing: border-box;
  font-family: sans-serif;
  border: none;
  text-decoration: none;
  font-size: 16px;
}

body {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  background-color: #1E4356;
  color: #FFFFFF;
}

form,
main {
  display: grid;
}

h1 {
  font-size: 32px;
}

h1,
p {
  text-align: center;
}

input,
textarea {
  margin-bottom: 10px;
  background-color: #DBD3D3;
  border-radius: 30px;
  text-indent: 30px;
  color: #000000;
}

textarea {
  padding-top: 30px;
}

input[type="file"] {
  background-color: transparent;
  color: #1E4356;
  margin: 8px 0px 0px -16px;
}

input,
.button {
  height: 50px;
}

.button {
  background-color: #1D5487;
  cursor: pointer;
  color: #fff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button:hover {
  opacity: 0.9;
}
