:root{
  --negro: #40414F;
  --blanco: #F4F5F6;
 }
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
html{
  font-family: 'Roboto';
 }
p{
  font-size: 14px;
 }
body{
  min-height: 100vh;
  color: var(--negro);
  background-color: var(--blanco);
  font-family: 'Roboto', sans-serif;
 }

.input-a{
  display: flex;
  flex-direction: row;
  position: relative;
  height: 34px;
  border-radius: 5px;;
  margin: 8px 0;
 }
.input-a span{
  background-color: var(--negro);
  height: 100%;
  line-height: 34px;
  color: var(--blanco);
  border-radius: 5px 0 0 5px;
  text-align: center;
  padding: 0 4px 0 6px;
 }
body .input-a input{
  max-height: 100%;
  border: none;
  box-sizing: border-box !important;
  padding-left: 10px !important;
  border: solid 1px var(--negro) !important;
  border-radius: 0 5px 5px 0 !important;
 }
body .input-a input:focus{
  box-shadow: none !important;
 }
.input-a label{
  position: absolute;
  font-size: 14px;
  left: 10px; top:7px;
  transition: all ease 0.4s;
 }
.input-a label.filled, .input-a label.active{
  top: -8px;
  left: 5px;
  background: var(--blanco);
  padding: 0 5px;
  color: #92939b;
  font-size: 12px;
  height: 11px;
 }

.btn-a{
  background-color: var(--negro);
  font-size: 16px;
  height: 34px;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  letter-spacing: 0.5px;
  margin: 10px 0;
  cursor: pointer;
 }
.btn-muted{
  font-size: 16px;
  height: 34px;
  color: var(--negro);
  border: solid 1px var(--negro);
  border-radius: 5px;
  padding: 0 20px;
  letter-spacing: 0.5px;
  margin: 10px 0;
  cursor: pointer;
 }
.flex-a{
  display: flex;
 }
.link_muted, .link-a{
  cursor: pointer;
 }
.link_muted{
  color: var(--negro);
  opacity: 0.5;
 }
.link-a{
  font-size: 16px;
  color: var(--negro);
 }
 
.centerAll{
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
 }
 .centerAll img, .logo1{
  height: 120px;
  max-width: 220px;
  max-width: 100%;
  margin-bottom: 10px;
 }

/* LOADER */
  #loader1{
    background-color: #000e;
    position: fixed;
    width: 100vw; height: 100vh;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform ease 0.6s;
   }
  #loader1.hidded{
    transform: translateY(-100%);
   }
  #loader1 p{
    color: var(--blanco);
    margin: 0;
    font-weight: 100;
    letter-spacing: 1px;
    font-variant: all-small-caps;
   }
  .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
   }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
   }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
   }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
   }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
   }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
   }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
   }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
   }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
   }