/*LOGIN*/

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

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

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

.titulo-login {
    font-family: 'Open Sans', sans-serif;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    position: relative;
    color: #2a2a2a
}

.subtitulo-login {
    font-family: 'Open Sans', sans-serif;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
}

.login-form {
    width: 90%;
    margin: auto;
}

.color-input {
    background: transparent !important;
}


/*ESTILOS DE BOTONES*/

.btn-color-1 {
    background-color: #2c343b;
    color: white;
    border-radius: 0%;
}

.btn-color-2 {
    background-color: #004d40;
    color: white;
    border-radius: 0%;
}

.btn-color-3 {
    background-color: #960025;
    color: white;
    border-radius: 0%;
}

#pnombre::placeholder {
    color: #474747;
}


/*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;
}