@font-face {
  font-family: Avant;
  src: url(./AVGARDN.TTF);
}

body {
  font-family: Roboto;
  height: 100vh;
  background-color: black !important;
}

form {
  margin: 20px 0;
  background-color: #424242;
  padding: 30px 25px;
  border-radius: 5px;
}

form .input-block {
  margin-bottom: 15px;
}

form .input-block label {
  font-size: 0.9em;
  font-family: Avant;
  color: white;
}

form .input-block input {
  width: 100%;
  display: block;
  padding: 7px;
  font-size: 16px;
  border: 1px solid #ccddef;
}

form .input-block input:focus,
input:active {
  outline: none !important;
  box-shadow: none;
  border-color: #616161;
}

form .btn-login {
  display: block;
  min-width: 120px;
  border: none;
  background-color: #ffffffd2;
  color: #212121;
  margin: auto;
  padding: 7px;
  margin-bottom: 15px;
}

/* APARIÇÃO DO FORM */
form {
  overflow: hidden;
  animation: fade 0.2s;
}

form .input-block {
  animation: move 500ms;
}
form .btn-login {
  animation: move 500ms;
  animation-delay: 280ms;
  animation-fill-mode: backwards;
}

@keyframes move {
  from {
    opacity: 0;
    transform: translateX(-35%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

a {
  text-decoration: none !important;
  font-family: Avant;
  font-size: 0.8em;
  color: white !important;
  transition: all 0.4s linear;
}

a::after {
  content: '';
  display: block;
  margin: auto;
  height: 2px;
  width: 0px;
  background: #bdbdbd;
  transition: all 0.2s linear;
}
a:hover::after {
  width: 10%;
}

a:hover {
  color: #bdbdbd !important;
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.95);
}

#bg {
  background-image: url(../img/bg-login.jpg);
  background-position: center center;
  height: 100%;
  width: 100%;
}

.captchaImg {
  border: 1px solid #616161 !important;
}
