/* Registro - cuando solo hay nombre completo*/
.registro-nombre {
    display: none;
}

.registro-nombre-completo {
    display: block !important;
}

/* Registro - nivel de seguridad 0 */
.label-secure-pwd,
.secure-pwd {
    display: none;
}


.mask {
    background-image: url("../img/5/1/logo-copa.png"), url("../img/5/1/personas.png"), url("../img/5/1/fondo.jpg");
    background-size: 15vw auto, 40vw auto, cover;
    /* 33vw ocupa 1/3 del ancho de la pantalla, cover ocupa todo */
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center center, left bottom, center center;
    /* izquierda-abajo, y centrado */
}

.password .mask,
.cambiarPassword .mask {
    background-image: url("../img/5/1/logo-copa.png"), url("../img/5/1/personas.png"), url("../img/5/1/fondo.jpg");
    background-size: 15vw auto, 30vw auto, cover;
    /* 33vw ocupa 1/3 del ancho de la pantalla, cover ocupa todo */
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center center, left bottom, center center;
    /* izquierda-abajo, y centrado */
}

@media (max-width: 767px) {

    .mask {
        background-image: url("../img/5/1/logo-copa.png"), url("../img/5/1/fondo.jpg");
        background-size: auto 15vh, cover !important;
        background-repeat: no-repeat, no-repeat !important;
        background-position: center 5vh, center center !important;
    }

    .password .mask,
    .cambiarPassword .mask {
        background-image: url("../img/5/1/logo-copa.png"), url("../img/5/1/fondo.jpg");
        background-size: auto 40vh, cover !important;
        background-repeat: no-repeat, no-repeat !important;
        background-position: center center, center center !important;
    }


}