.fondo-consulta{
	flex: 1;
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

#form_sms {
  max-width: 550px;
  margin: 25px auto;
}

#form_sms input {
  width: 52px;             /* IMPORTANTE */
  height: 64px;

  display: flex;           /* la clave */
  align-items: center;     /* centra vertical */
  justify-content: center; /* centra horizontal */

  font-size: 28px;
  line-height: 1;          /* evita recorte en iOS */

  text-align: center;

  color: #000 !important;
  -webkit-text-fill-color: #000 !important;

  border: solid 1px #ccc;
  box-shadow: 0 0 5px #ccc inset;
  border-radius: 8px;
  background-color: #fff !important;

  -webkit-appearance: none;
  appearance: none;

  caret-color: #000;
}

#form_sms input:focus {
  border-color: #1a75ce;
  box-shadow: 0 0 5px #002D58 inset;
}

#form_sms input::selection {
  background: transparent;
}

#form_sms button {
  font-family: "Bogle";
  font-weight: bold;
  color: white;
  margin: 30px 0 50px;
  width: 80%;
  padding: 6px;
  background-color: #002D58;
  border: none;
  text-transform: uppercase;
}

#form_sms button:hover {
  background-color: #1a75ce;
  transition: .3s ease-in-out;
  cursor: pointer;
}
.swal2-cancel-button{
  background-color: #002D58;
  height: 2rem;
  color: #FFFFFF;
  display: flex;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: none;
}
.swal2-confirm-button{
  color:#002D58;
  text-decoration: underline;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-weight: bold;
}

.swal2-cancel-button,
.swal2-confirm-button {
    display: block;
    font-family: "Bogle";
    width: 100%;
    margin-bottom: 10px; /* Ajusta según sea necesario */
    font-size: 1.125em;
}