/* @import url(../css/main.css); */

main {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#frmLogin,
#frmRecuperarSenha {
  max-width: 375px;
  width: 100%;
  padding: 30px 20px;
}

#frmLogin #esqueceu-senha {
  font: normal normal var(--fontWeightSemiBold) 0.8rem var(--fontFamilyPrimary);
  color: var(--blueDark);
  margin: 1rem 0;
  cursor: pointer;
}

#frmLogin #esqueceu-senha:hover {
  text-decoration: underline;
}

.logo-empresa,
.logo-kndoc {
  width: 100%;
  margin-bottom: 0.6rem;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.logo-empresa img {
  width: 160px;
}

.logo-empresa img.curymuniz-empresa {
  background-color: #303030;
  padding: 15px 15px;
  border-radius: 0.25rem;
}

.logo-empresa img.inapel-empresa {
  width: 100px;
}

.logo-kndoc img {
  margin-top: 18px;
  padding-left: 10px;
  width: 150px;
  border-radius: 0;
}

.logo-empresa .zavagnagralha-empresa {
  width: 100px;
  border-radius: 0.25rem;
}

.inputs {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 1rem;
}

.inputs:last-child {
  margin-bottom: 0.7rem;
}

.inputs label {
  font: normal normal var(--fontWeightMedium) 0.8rem var(--fontFamilyPrimary);
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.inputs input {
  font: normal normal var(--fontWeightRegular) 0.75rem var(--fontFamilyPrimary);
  padding: 10px 15px;
  border: 2px solid var(--grayLight);
  border-radius: 4px;
}

.inputs input:focus {
  border: 2px solid var(--blueDark);
}

.inputs svg {
  position: absolute;
  top: 37px;
  right: 14px;
}

.inputs svg#showPassword,
.inputs svg.showPassword {
  display: none;
}

.inputs svg#showPassword,
.inputs svg#hidePassword,
.inputs svg.showPassword,
.inputs svg.hidePassword {
  cursor: pointer;
}

.show-opacity {
  opacity: 1 !important;
}

#caps {
  opacity: 0;
  transition: opacity 0.5s ease;
  font: normal normal var(--fontWeightSemiBold) 0.8rem var(--fontFamilyPrimary);
  margin: 1rem 0;
}

#login-low {
  display: flex;
  justify-content: space-between;
}

#msgResponse {
  opacity: 0;
  transition: opacity 0.5s ease;
  font: normal var(--fontWeightMedium) 0.8rem var(--fontFamilyPrimary);
  display: block;
  margin-top: 1rem;
}

#msgResponse.error {
  color: var(--red);
}

#msgResponse.success {
  color: var(--green);
}

.container-recuperar #msgResponse,
#frmRecuperarSenha #msgResponse {
  margin-bottom: 1rem !important;
}

#entrar,
#recuperar,
#confirmar {
  font: normal normal var(--fontWeightSemiBold) 0.8rem var(--fontFamilyPrimary);
  color: var(--white);
  width: 100%;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  background: var(--gray);
  cursor: pointer;
}

#frmRecuperarSenha .email-usuario p {
  font: normal 1rem var(--fontWeightSemiBold) 0.8rem var(--fontFamilyPrimary);
  color: var(--blueDark);
  text-align: center;
  margin: 1rem 0;
}
