* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  /* background: #4e1515; */
  background: #121214;
  color: #e1e1e1;
  line-height: 3.75rem;
}

main {
  display: grid;
  height: 100vh;
  grid-template-columns: 1fr 480px 480px 1fr;
  grid-template-rows: 1fr 480px 1fr;
  grid-template-areas:
    ". . . ."
    ". logo form ."
    ". . . .";
  justify-content: center;
  align-items: center;
}

section#logo {
  display: flex;
  grid-area: logo;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 32px;
}

section#form {
  display: flex;
  grid-area: form;
  height: 100%;
  /* background-color: #643232; */
  background-color: rgb(32, 32, 36);
  border-radius: 8px;
  flex-direction: column;
  align-items: stretch;
  padding: 64px;
  box-sizing: border-box;
}

input,
textarea {
  outline: 0px;
  background: #121214;
  border: 2px solid #121214;
  border-radius: 5px;
  height: 50px;
  padding: 15px 21px;
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  width: 100%;
  transition: border 0.2s ease 0s;
}

input {
  width: 100%;
  height: 50px;
  font-size: 16px;
  background: #121214;
  border-color: #121214;
  color: rgb(255, 255, 255);
  padding: 0px 1em 0px 2.65em;
  border-radius: 5px;
  margin-top: 12px;
}

.formInput svg {
  position: absolute;
  margin-top: 28px;
  margin-left: 15px;
}

.currentColor {
  fill: rgb(40, 39, 44);
}

input:focus {
  border-color: #f87000;
}

input:focus .currentColor {
  fill: #f87000;
}

h1 {
  font-size: 3.375rem;
}

a.esqueci {
  display: block;
  margin-top: -10px;
  color: #f87000;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

a.registrese {
  color: #f87000;
  font-weight: 500;
  text-decoration: none;
  margin-left: 8px;
}

.btnEnvia {
  background: #f87000;
  border-radius: 5px;
  border: 0px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: bold;
  height: 50px;
  transition: background 0.2s ease 0s, color 0.2s ease 0s;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
}

.btnEnvia:hover {
  background: #f57e09;
}

@media all and (max-width: 992px) {
  main {
    display: grid;
    height: 100vh;
    grid-template-columns: 480px;
    grid-template-rows: auto;
    grid-template-areas:
      "logo"
      "form";
    justify-content: center;
    align-items: center;
    padding: 45px;
  }

  section#logo {
    margin: 30px;
    margin-bottom: 20px;
    padding: 0;
  }

  section#form {
    margin: 30px;
  }
}

/* ::placeholder {
  color: #e1e1e5;
} */
