@import "/css/cores.css";

* {
  margin: 0px;
}
@font-face {
  font-family: aspekta;
  src: url(../font/aspekta.ttf)
  }
body {
  font-family: aspekta, "Segoe UI", Geneva, Verdana, sans-serif;
  background-image: url('/img/fundo_login.png');
  background-size: cover;
}
.main-login {
  width: 100%;
  height: calc(100vh - 3rem - 4px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

footer{
  background: none !important;
}
.logo_login{
  width: 150px;
}
.div-login {
  width: 300px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
  border-radius: 10px;
  padding: 25px;
  background-color: #111111;
}
.form-login {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 5px;
}

h1 {
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bolder;
  font-size: 26pt;
  width: 100%;
  text-align: center;

  background-color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
h1 img {
  width: 30pt;
  margin-right: 5px;
}

.inputs-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.input-login {
  margin: 2px;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 8px 4px;
  width: 74%;
  height: 100%;
  color: white;
  background-color: #3D3D3D !important;
}

.input-login:focus {
  border-color: var(--azul-empresa);
  background-color: var(--whitesmoke);
}

.btn-login {
  height: 40px;
  width: 90%;
  color: black;
  background-color: #FFBA14;
  border-radius:4px;
  font-size: 14pt;
  font-weight: 600;
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}


.erro_login {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  width: 100%;
  font-size: 16px;
  border-radius: 4px;
  padding: 3px;
  text-align: center;
  color: var(--red);
}

.error-icon {
  font-size: 18px !important;
}

.erro_login p {
  line-height: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--azul-empresa) !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--fundo-login) inset;
}
