@import '../styles/estiloPadrão.css';
body {
  background-color: var(--corPrimaria);
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
#voltar {
  display: block;
  background-color: var(--corPrimaria);
  margin-left: 10px;
  border: none;
  color: var(--rosaMakeasy);
  font-weight: 700;
}
#logo {
  width: 30rem;
  margin-left: -7rem;
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
}
#fieldsetCad {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 24rem;
  justify-content: center;
  margin: 2rem auto 0.5rem;
  border: 0.17rem solid #ffffff;
  border-radius: 10px;
}
#fieldsetLogin {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 24rem;
  margin: 4.5rem auto 0.5rem;
  border: 0.17rem solid #ffffff;
  border-radius: 10px;
  padding: 10px;
}
#cadastro {
  color: #ffffff;
}
#tituloCad {
  margin: 1rem auto 1rem;
  font-size: 2.7rem;
  font-weight: 700;
}
#tituloLogin {
  margin: 1rem auto 1.7rem;
  font-size: 2.7rem;
  font-weight: 700;
}
.avisos {
  border-radius: 0.5rem;
  color: #ffffff;
  width: 20rem;
  padding: 0.7rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  display: none;
}
#alert {
  background-color: rgba(255, 66, 66, 0.514);
  border: rgba(255, 66, 66, 0.74) 1px solid;
}
#sucesso {
  background-color: rgba(66, 255, 66, 0.514);
  border: rgba(66, 255, 66, 0.74) 1px solid;
}
.inputCad {
  width: 20rem;
  height: 1.2rem;
  font-weight: lighter;
  margin-top: 10px;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: none;
  padding: 10px;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.inputLogin {
  width: 20rem;
  height: 1.2rem;
  font-weight: lighter;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  border: none;
  padding: 10px;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.tituloInputLogin {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}
.tituloInputCad {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}
#botaoSubmit {
  width: 11.5rem;
  height: 2.7rem;
  margin: 1.5rem auto 0rem;
  border-radius: 10px;
  border: none;
  background-color: var(--rosaMakeasy);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
#botaoSubmitRecuperar {
  width: 11.5rem;
  height: 2.7rem;
  margin: 1rem auto;
  border-radius: 10px;
  border: none;
  background-color: var(--rosaMakeasy);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
#botaoSubmit:hover {
  background-color: var(--rosaMakeasyHover);
  transition: 0.5s;
}
#loginHref {
  font-size: 0.9rem;
  font-weight: 600;
}
#loginHref a {
  color: #001d5b;
  text-decoration: none;
  font-weight: 800;
}
#loginHref a:hover {
  color: #001122;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #cadastro{
    width: 100%;
  }
  #fieldsetLogin {
    min-width: 60%;
    max-width: 90%;
  }
  .inputLogin {
    width: 90%;
  }
  .inputCad {
    width: 90%;
  }
  #fieldsetCad {
    min-width: 60%;
    max-width: 90%;
  }
  #logo {
    width: 80%;
    margin-left: 0.1rem;
  }
  header {
    margin-top: 0;
  }
  #voltar {
    width: 100%;
    margin-left: 0%;
  }
  #span {
    display: none;
  }
  .seta{
    width: 17%;
  }
}
@media (max-width: 1500px) {
  #fieldsetLogin {
    margin-top: 0.5rem;
  }
  #fieldsetCad {
    margin-top: 0.5rem;
  }
}