#filaErrorUsuario {    
    margin-top: 1rem;
}
/* en el móvil al aparecer el teclado se modifica el vh... interactive-widget=overlays-content" no funciona */
#formulario {
    width: 100%;
    height: 100%;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
}

input, select, option {
    padding-left: 0.8rem;
    /* font-family: aptos; */
    font-size: 1rem;
}

.form-input-size {
    width: 100%;
    height: 3rem;
}

.form-row-container {
    width: 100%;
    height: 6.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.label-extra-padding {
    padding-left: 0.9rem;
    padding-bottom: 0.4rem;
}

#reveal-password-container {
    width: 100%;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0 1rem 0;
}

#reveal-password-input-container {
    display: flex;
    column-gap: 0.6rem;
    align-items: center;
    margin-bottom: 0.3rem;
}

#reveal-password:hover, label[for="reveal-password"] {
    cursor: pointer;
}

[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;

  aspect-ratio: 1;
  width: 20px;
  height: 20px;
  border: 2px solid var(--blue-border);
  border-radius: 0.3em;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

[type="checkbox"]:checked {
  background-color: var(--blue-border);
}

[type="checkbox"]:checked::after {
  content: "✔"; /* aquí puedes usar ✓, ✔ o incluso un SVG de fondo */
  color: white;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#botonEntrar {
    appearance: none;
    /* Prefijos de renderizado */
    /* WebKit */
    -webkit-appearance: none;
    /* Mozilla */
    -moz-appearance: none;
    /* Opera */
    -o-appearance: none;
    /* Internet Explorer */
    -ms-appearance: none;

    width: 100%;
    height: 3rem;
    /* min-height: 1.3rem; */
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    background-color: var(--dark-blue);
    border: none;
    border-radius: 10px;    
}

#botonEntrar:hover {
    cursor: pointer;
    opacity: 80%;
    border: none;
}

.blue-border {
    border: 2px solid var(--blue-border);
    border-radius: 10px;
}

.grey-border {
    border: 2px solid var(--grey-border);
    border-radius: 10px;
}