.login-portada {
    background-image: url(https://qcagrez.cl/pcap/public/img/login/login.jpeg);
    height: 100vh;
    width: 100%;
    text-align: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.login-portada:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.login-ancho {
    width: 50%;
    margin: auto;
}

@media(max-width: 820px) {
    .login-ancho {
        width: 70%;
    }
}

@media(max-width: 620px) {
    .login-ancho {
        width: 100%;
    }
}

.fondo-form {
    background-color: rgba(255, 255, 255, 0.8);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.texto {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: black
}

#pnombre::placeholder {
    color: black;
}

.ancho-form {
    width: 60%;
    margin: auto;
}

@media(max-width: 820px) {
    .ancho-form {
        width: 80%;
    }
}

@media(max-width: 620px) {
    .ancho-form {
        width: 90%;
    }
}

.btn-login {
    background-color: #960025;
    color: white;
}

.no-border {
    border-radius: 0%;
}

.text-input {
    font-family: 'Poppins';
    font-size: 13px;
    color: black;
}



/*SPINNER*/

body.activo {
    /* Mostrar barras de desplazamiento cuando sea necesario */
    overflow: auto;
    /* Si quieres margen interno o externo (padding / margin) agrégalo aquí */
}

#mostrar {
    /* Colocar encima de todo el contenido */
    position: absolute;
    top: 0;
    z-index: 1000;
    /* Evitar que se vea lo que está debajo */
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 1;
    /* Ocultar con transición */
    transition: all 2s ease;
}

#mostrar.ocultar {
    /* Enviar arriba para ocultar */
    top: -100%;
    opacity: 0;
}


.outline-2{
    background-color: #04253a;
    color: white;
}


