

/* HTML */

  html{
    height: 100%;
  }
  

/* BODY */
  
  body{
    font-family: "Montserrat", "Arial", "sans-serif";
    font-size: 13px;
    background-color:rgba(249,249,249,255);
    height: 100%;
  }


/* DISPLAY ORDENADOR/MOVIL/TABLET */

.movil {
  display: none !important;
}

.ordenador{
  display: inline-block !important;
}


/* TÍTULOS */

.titulos {
  font-size: 20px;
  text-align: center;
}

.titulos_2 {
	font-size: 18px;
}

.titulos_3 {
	font-size: 16px;
}


/* INPUTS FORMULARIO */

  .form_input {
  width: 100%;
  }
  
  .form_textarea{
    width: 100%;
  }


  /* LABELS */


  .form-floating>label{
    background-color: transparent !important;
  }

  .form-floating>label::after{
    background-color: transparent !important;
  }


/* BOTONES */

  
  .botones_inv {
    transition-duration: 0.4s;
    border-radius: 8px;
    padding: 7px 14px;
    background-color: 		rgb(12, 90, 207,0);
    color:	rgb(12, 90, 207);
    border-color: 	rgb(12, 90, 207);
    touch-action: manipulation;
  }
  
  .botones_inv:hover {
    background-color:	rgba(13,110,253);
    color: white;
  }

  .botones {
    transition-duration: 0.4s;
    border-radius: 8px;
    padding: 7px 14px;
    background-color: 		rgba(13,110,253);
    color:	rgb(255, 255, 255);
    border-color: 	rgb(12, 90, 207);
    white-space: nowrap;
    touch-action: manipulation;
  }
  
  .botones:hover {
    background-color:	rgb(12, 90, 207);
    color: white;
  }


  .botones_rojos {
    transition-duration: 0.4s;
    border-radius: 8px;
    padding: 7px 14px;
    background-color: 		rgba(220,53,69,255);
    color:	rgb(255, 255, 255);
    border-color: 	rgba(229,103,115,255);
    white-space: nowrap;
    touch-action: manipulation;
  }
  
  .botones_rojos:hover {
    background-color:	rgba(229,103,115,255);
    color: white;
  }


/* ERRORES */

.errorlist{
	color:red
}



