@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

/* Get rid of all default margins/paddings. Set typeface */
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
/*  background-color: transparent;*/
  font-family: "lato", sans-serif;
}

/* Pone el formulario en el centro tanto horizontal como verticalmente. Establece su altura al 100% de la altura de la ventana gráfica */
.centrarFrm {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form{
  background-color: #F8F8F8;
  width: 400px;
  border-radius: 8px;
  padding: 20px 40px;
  box-shadow: 0 10px 25px rgba(92, 99, 105, .2);
}

.subtitulo{
font-size: 5px;

}

.input_cont{
  position: relative;
  height: 45px;
  width: 90%;
  margin-bottom: 17px;
  
}
/* Aplicar estilo a las caja de texto de las entradas */
.input{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  border: 1px solid #DADCE0;
  border-radius: 7px;
  font-size: 16px;
  padding: 0 20px;
  outline: none;
  background: none;
  z-index: 1;

  }

/* Ocultar los textos del marcador de posición (a) */

::placeholder {
  color: transparent;
}


/* Aplicar estilo a las etiquetas de texto */

.etiqueta{
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0 4px;
  background-color: white;
  color: #DADCE0;
  font-size: 16px;
  transition: 0.5s;
  z-index: 0;
}

.submitBtn {
  display: block;
  margin-left: auto;
  padding: 15px 30px;
  border: none;
  background-color: #178ae7;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 30px;
}

.submitBtn:hover {
  background-color: #679bc5;
  transform: translateY(-2px);
}

.input:focus + .etiqueta {
  top: -7px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  color: #178ae7;
}

.input:focus {
  border: 2px solid #178ae7;
}

.input:not(:placeholder-shown)+ .etiqueta {
  top: -7px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
}

.lista-proveedores{
    position:absolute;
    width:100%;
    background:#fff;
    border:1px solid #ced4da;
    border-top:none;
    z-index:9999;
    max-height:250px;
    overflow-y:auto;
    display:none;
}

.item-proveedor{
    padding:10px;
    cursor:pointer;
    border-bottom:1px solid #eee;
}

.item-proveedor:hover{
    background:#f8f9fa;
}