/* login.scss */

html {
  width: 100%;
  height: 100%;
}

body {
   width: 100%;
   height: 100%;
   background-image: url("../imgs/auth-bg.jpg");
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
}

.hide {

  display: none;

}

.left {

  float: left;

}

.right {

  float: right;

}



.clear {

  clear: both;

}



h1, h2, h3 {

  font-family: "Oswald", sans-serif;

}



.status-flag {

  display: inline-block;

  padding: 3px 5px;

  color: #ffffff;

  font-size: 0.7rem;

  font-weight: 700;

  -webkit-border-radius: 2px;

  -ms-border-radius: 2px;

  border-radius: 2px;

}



.status-flag.aberto {

  background-color: #999999;

}



.status-flag.em_analise {

  background-color: #F0AD4E;

}



.status-flag.parcial {

  background-color: #428BCA;

}



.status-flag.finalizado {

  background-color: #5CB85C;

}



.status-flag.concerto {

  background-color: #5CB85C;

}



.status-flag.devolucao {

  background-color: #FF99FF;

}



.status-flag.nao_procedente {

  background-color: #D9534F;

}



.meta-dados-table {

  font-size: 12px;

  margin: 0;

  height: 0;

  overflow: visible;

}


.full-height {

  height: 100vh;

}



.login-box {

  width: 1050px;
  
  height: 1485px;

  margin: 30px 0;

  padding: 40px 60px;

  background-color: #ffffff;

  box-shadow: 0 0 15px #000;

}

.login-box h1 {

  font-size: 32px;

}

.login-box h2{

  font-size: 40px;

}

.login-box h3{

  margin-bottom: 16px;

}

.login-box p {

  font-size: 18px;

  margin-bottom: 48px;
  
}

header {

  margin-bottom: 20px;

}

header::after {

  display: block;

  content: "";

  clear: both;

}



.logo {

  width: 250px;

  margin: 0;

}

.logo-termos {

  width: 350px;

  margin: 0;

}

.logo:not(:only-child) {

  float: left;

}

h1 {

  float: right;

}



h1 {

  font-size: 1.5rem;

  color: #585858;

  float: right;

}



.form-check {

  float: left;

}



.esqueceu-senha-link {

  float: right;

  color: #666666;

  margin-bottom: 10px;

}



.statement {

  width: 100%;

}

.aviso-formulario {

  margin-top: 15px;

  color: #ffffff;

  text-align: center;

}

.aviso-formulario a {

  color: inherit;

  font-weight: 700;

}

.alert {

  width: 85%;

  display: block;

  position: absolute;

  left: 50%;

  top: 50%;

  -webkit-transform: translate(-50%, -50%);

  -ms-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

}



/*# sourceMappingURL=login.css.map */



.login-box.termos .container{

  font-family: Arial!important;

  text-align: justify;
}

.home-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-container > p {
  margin-top: 16px;
  color: #fff;
}

.home-container > p > a {
  font-weight: bolder;
  color: #0f0;
}

.glass-wrapper {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .4);
}

.form-wrapper{
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px 32px;
}

.form-wrapper > details {
  width: 100%;
  margin-bottom: 16px;
}

.form-wrapper > form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-wrapper > form > button{
  margin-top: 16px;
}

.form-wrapper > form > a{
  color: #fff;
}

.input-wrapper {
  background-color: transparent;
  width: 100%;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-bottom: 1px solid #000;
}

.input-wrapper > input{
  width: 100%;
  background-color: transparent;
  border: none;
  color: #1b1b1b;
}

.input-wrapper > input:-webkit-autofill{
  -webkit-box-shadow: 0 0 0 30px #a26739 inset;
  -webkit-text-fill-color: #000;
}

.input-wrapper > input::placeholder {
  color: #000;
}

.input-wrapper > i {
  color: #000;
}

.input-wrapper input:focus-visible {
  outline: none;
}

.glass-button {
  border: 0;
  width: 150px;
  height: 40px;
  text-decoration: none;
  border-radius: 15px;
  background-color: rgba(0, 255, 0, 0.5);
  box-shadow: 0 0 10px #000;
  color: #1b1b1b;
  font-weight: bolder;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  transition: .5s;
}

.glass-button:active,
.glass-button:focus{
  outline: none;
}

.glass-button:hover {
  background-color: rgba(0, 255, 0, 0.75);
  letter-spacing: 2px;
  box-shadow: 0 0 30px #000;
}

.form-wrapper > form > p > a,
.form-check > label > a {
  color: #0f0;
}

.form-check > label {
  color: #000;
}