.label-flutuante {
    position: absolute;
    top: -10px; /*alterar para 10px após concluir as validações*/
    left: 15px;
    font-size: 1rem;
    color: rgb(117, 116, 116);
    background: #ffffff;
    padding: 0 5px;
    pointer-events: none;
  }
  
  /* Efeito de flutuação 
  input:focus + label,
  input:not(:placeholder-shown) + label,
  select:focus + label,
  select:not([value=""]) + label {
    top: -10px;
    font-size: 0.85rem;
    color: #007BFF;
  }
    
input:focus,
select:focus {
  outline-color: rgb(29, 122, 195);
}


input:focus + .label-flutuante,
select:focus + label {
  font-size: 12px!important;
  top: -10px!important;
  color: rgb(29, 122, 195);
  transition: .3s!important;
}*/