.bg-image-vertical {
    position: fixed;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}
    
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-y: auto; /* Permitir scroll vertical si es necesario */
}

section {
    margin-top: 0%; /* Ocupa toda la altura de la pantalla */
    display: flex;
    align-items: center; /* Centra verticalmente */
}

.form-container {
    width: 100%;
    padding: 0px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin-top: 10%;
}

.toggle-password {
    position: absolute;
    top: 30%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
    color: #000000;
  }
  
