body {
  display: flex;
  flex-direction: column;
  background-color: rgb(25, 24, 36);
  font-family: 'Nunito', sans-serif;
  font-size: medium;
  color: #FFDB1D;
}
main {
  width: 100%;
  height: 33em;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 5%;
}
.cor-texto{
  color: #FFDB1D;
} 
.cor-texto:hover{
  color: #348974;
}
#home, #subscribe, #profile, #contact {
  color: #FFDB1D;
}
#home:hover, #subscribe:hover, #profile:hover, #contact:hover {
  color: #348974;
}
#img-div {
  width: 50%;
  height: auto;
}
#imgLogin-img {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 60%;
  margin: 0;
}

/*Formulário*/
#form-div {
  width: 45%;
  height: 100%;
  
}
#login-form {
  border: 1px solid #FFDB1D;
  border-radius: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  box-shadow: 0px 0px 5px;
}
#login-form h5 {
  text-align: center;
}
#require-p {
  margin: 0;
  font-size: 2vh;
}
.campoForm {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 8px;
}
.campoForm label {
  color: whitesmoke;
  font-size: 1em;
}
.campoForm .col-sm-10 input {
  box-sizing: content-box;
  outline: none;
  border-radius: 15px;
  border-color: #FFDB1D;
  background-color: transparent;
  color: whitesmoke;
}
.campoForm.top {
  justify-content: flex-start;
}
.form-group .btn-div {
  width: 50px;
  margin-left: auto;
  margin-right: auto;
}
#confirmaLogin-div {
  display: flex;
  flex-direction: column;
  width: 45%;
  height: 90vh;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
}
#confirmaLogin-div button {
  width: 15%;
}
#recoverPass-p {
  padding-top: 5%;
}
.imagens{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 1%;
}
.rodape{
  margin: 1%;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: var(--medio);
  border-radius: 10px;
  border: 3px solid #FFDB1D;
}

@media screen and (max-width: 1020px) and (min-width: 540px) {

  main {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 5%;
    flex-direction: column;
  }
  #form-div {
    width: 90%;
    height: 100%;
  }
  .campoForm .col-sm-10 input {
    width: 90%;
  } 
  .form-group .btn-div {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #imgLogin-img {
    display: flex;
    justify-content: center;
    width: 35em;
    height: 40em;
    margin: 0;
  }
}

@media screen and (max-width: 539px) {

  main {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 5%;
    flex-direction: column;
  }
  #form-div {
    width: 90%;
    height: 100%;
  }
  .campoForm .col-sm-10 input {
    width: 90%;
  } 
  .form-group .btn-div {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}



