body {
  display: flex; 
  flex-direction: column; 
  min-height: 100vh;
}

/* BOTONES 28-04-2022 NB */
.boton-turqueza {
    background-color: #25b2c7; 
    text-transform: uppercase; 
    font-weight: 700; 
    color: #fff; 
    padding: 10px 20px; 
    display: inline-block; 
    cursor: pointer; 
    margin-left: -1px; 
    text-decoration: none !important; 
    border-radius: 4px;
    outline: 0; 
    border: 0;
  }
  
.boton-turqueza:hover, 
.boton-turqueza:focus, 
.boton-turqueza:active {
  background-color: #2896a7;
  color: #fff; 
}
  
.boton-naranja {
  background-color: #e55017; 
  text-transform: uppercase; 
  font-weight: 700; 
  color: #fff; 
  padding: 15px 20px; 
  display: inline-block; 
  cursor: pointer; 
  margin-left: -1px; 
  text-decoration: none !important; 
  border-radius: 4px;
  outline: 0; 
  border: 0;
  text-align: center !important;
}
  
.boton-naranja:hover, 
.boton-naranja:focus, 
.boton-naranja:active {
  background-color: #c24212;
  color: #fff; 
}
  
.boton-default {
  background-color: #d4d4d4; 
  text-transform: uppercase; 
  font-weight: 700; 
  color: #000; 
  padding: 10px 20px; 
  display: inline-block; 
  cursor: pointer; 
  margin-left: -1px; 
  text-decoration: none !important; 
  border-radius: 4px;
  outline: 0; 
  border: 0;
}

.boton-default:hover, 
.boton-default:focus, 
.boton-default:active {
  background-color: #cbcbcb;  
  color: #000; 
}

.titulo-pasos {
  text-transform: uppercase;
}

.titulo-campo {
  color: #e55017;
}