/* geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
  color: #302B28;
  border: none;

}

.corpo{
  margin-top: 8vh;
}

input, label {
  display: block;
  outline: none;
  width: 100%;
}

a {
  color: #302B28;
  margin-top: 2%;
  font-size: large;
  font-family: Georgia;
}
#voltar{
  text-decoration: none;
  font-size: 2em;
  color: #494949;
  font-family:'Arial Narrow Bold';
  font-weight: bold;
  float: right;
  margin-top: -2%;
  margin-right: -100%;

}


/* form */
#main-container {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fae5c4;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 35px;
  box-shadow: 0px 10px 40px #00000056;
}

#main-container h1 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.6rem;
  color: #302B28;
}


form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.full-box {
  flex: 1 1 100%;
  position: relative;
}

.half-box {
  flex: 1 1 45%;
  position: relative;
}

.spacing {
  margin-right: 2.5%;
}

label {
  font-weight: bold;
  font-size: .8rem;
  color: #504843;
}

input {
  border-bottom: 2px solid #504843;
  padding: 10px;
  font-size: .9rem;
  margin-bottom: 40px;
  background: #fae5c4;
}

input:focus {
  border-color: #302B28;

}

input[type="submit"] {
  background-color: #504843;
  color: #fae5c4;
  border: none;
  border-radius: 20px;
  height: 40%;
  cursor: pointer;
  font-weight: bold;
  
}

input::placeholder{
  color: #6d625c;
}