.logo-login {
    height: 100px;
    width: 100%;
    background: url("../../images/logoSCG.png") no-repeat center;
    background-size: 30%;
}
.title-login {
    font-size: 2em;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
}
body {
    content: "";
    background: url("../../images/logInBack.png");
    background-repeat: no-repeat;
    background-size: cover;
    /*opacity: 0.6;*/
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;

     /* Degradado sobre la imagen */
     background: linear-gradient(to top, #9d2148, #9d2148), url('../../images/logInBack.png');
     background-blend-mode: overlay; /* Mezcla el degradado con la imagen */
     background-size: cover; /* Asegura que la imagen cubra el contenedor */
     background-repeat: no-repeat; /* Evita que la imagen se repita */
     background-attachment: fixed; /* Fija la imagen al fondo */

    
    /*  AGREGA UN FILTRO GRIS SOBRE TODA LA PAGINA (CAMBIA TODO A ESCALA DE GRISES)
        filter: grayscale(1);
        transition-property: filter;
        transition-duration: 1s; */

    
}
.btn-rosa {
    background: #9d2148;
    color: #fff;
}

.btn-rosa:hover {
    background: #7c1a39;
    color: #fff;
}
.fa-user,.fa-key {
    color: #9d2148;
}
.transbox {
    /*width: 44%;
                padding: 20px;*/
    width: 100%;
    padding: 30px;
    border: 1px solid #9d2148;
    background-color: #f8f8f85b;
    /*opacity: 0.8;*/
    /*filter: alpha(opacity=85);*/
    /* For IE8 and earlier */
    border-radius: 5px;
}
.transbox h1 {
    color: #b28e5c;
    font-weight: bold;
    font-family: Helvetica;
    font-size: 26px;
}
.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #e0e0e0 !important;
    border: 1px solid #cccccc !important;
    border-radius: 4px;
}
@media (max-width: 1200px) {
    .logo-login {
        height: 100px;
        width: 100%;
        background: url("../../images/logoSCG.png") no-repeat center;
        background-size: 40%;
    }
}
@media (max-width: 992px) {
    .logo-login {
        height: 100px;
        width: 100%;
        background: url("../../images/logoSCG.png") no-repeat center;
        background-size: 50%;
    }
}
@media (max-width: 768px) {
    .logo-login {
        height: 100px;
        width: 100%;
        background: url("../../images/logoSCG.png") no-repeat center;
        background-size: 65%;
    }
}
@media (max-width: 576px) {
    .logo-login {
        height: 100px;
        width: 100%;
        background: url("../../images/logoSCG.png") no-repeat center;
        background-size: 100%;
    }
}