/* -----------------------------------------------
   RESET DE INPUTS PADRŐES
-------------------------------------------------- */
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

/* -----------------------------------------------
   LAYOUT BÁSICO E FUNDO
-------------------------------------------------- */
html, body {
    width: 100vw;
    height: 100%;
    margin: 0;
    padding: 0;

    background-color: #2C2D2E;
    overflow-x: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* -----------------------------------------------
   BARRA DE LOADING
-------------------------------------------------- */
.loading-bar {
  position: relative;
  width: 122px;
  height: 4px;
  background-color: #C1C1C1;
  overflow: hidden;
}

.loading-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background-color: #24AEB1;
  animation: loadmove 1.5s cubic-bezier(0.4, 0, 0.2, 0.7) infinite;
}

@keyframes loadmove {
  0%   { left: -60%; }
  71%  { left: 100%; }
  100% { left: 100%; }
}