﻿/* MARCA DE AGUA - SIC*/

.watermark {
    color: #0E3E28;
    opacity: 0.6;
    font-size: 100pt;
    position: fixed;
    pointer-events: none;
    z-index: +1000000;
}

/* BANNER BACKGROUND */

.banner {
    width: 100%;
    background-image: url('../Images/bannerGeneral.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    min-height: 14vh;
    display: flex;
}

/* BACKGROUND LOGIN */

.background-login {
    background-image: url('../Images/FondoLogin.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    min-height: 20vh;
}

.main-footer {
    display: block;
}

#NavGeneralUsuario {
    display: none;
}

@media (max-width: 576px) {
    .titulo-principal {
        font-size: 3.5rem !important;
        line-height: 1.2;
    }
}

/* -- Color de Forms Login*/
.bg-glass-n1 {
    background-color: rgba(100, 100, 100, 0.4); /* gris semitransparente */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* para Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-glass-n2 {
    background-color: rgba(255, 255, 255, 0.719);
    /* gris semitransparente */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* para Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Barra de presentacion - Banner*/
/* Banner Principal SIC */

.logo {
    height: auto;
    width: auto;
    max-height: 50px;
    margin-left: 20px;
}

/* Titulo Banner*/
.texto-sic {
    font-family: 'Noto Sans', sans-serif;
    text-align: right;
    line-height: 1.2;
}

.titulo {
    font-weight: bold;
    color: #730F3B;
    font-size: 3rem;
    display: block;
}

.subtitulo {
    font-weight: normal;
    color: #1A1A1A;
    font-size: 2rem;
    display: block;
    margin-top: 0.3rem;
}

.parrafo-sic {
    font-family: 'Noto Sans', sans-serif;
    font-weight: normal;
    color: #1A1A1A;
    font-size: 1.4rem;
    display: block;
    margin-top: 0.3rem;
}

/* Pantallas chicas */
@media (max-width: 767.98px) {
    .logo {
        display: none;
    }
}

@media (min-width: 0px) {
    .texto-sic {
        margin-right: -20px;
    }

    .titulo {
        font-size: 2rem;
    }

    .subtitulo {
        font-size: 1.4rem;
        margin-top: 0.3rem;
    }
}


/* Pantallas medianas (tablets) */
@media (min-width: 768px) {
    .logo {
        max-height: 40px;
        margin-top: .45rem;
    }
}

@media (min-width: 768px) {
    .titulo {
        font-size: 2rem;
    }

    .subtitulo {
        font-size: 1.4rem;
        margin-top: 0.3rem;
    }
}

/* Pantallas grandes (escritorio) */
@media (min-width: 992px) {
    .logo {
        max-height: 45px;
        margin-top: .9rem;
    }
}

@media (min-width: 992px) {
    .titulo {
        font-size: 2.6rem;
    }

    .subtitulo {
        font-size: 1.8rem;
        margin-top: 0.3rem;
    }
}

/* Pantallas extra grandes */
@media (min-width: 1200px) {
    .logo {
        max-height: 50px;
        margin-top: 1.8rem;
    }
}

@media (min-width: 1200px) {
    .titulo {
        font-size: 3rem;
    }

    .subtitulo {
        font-size: 2.1rem;
        margin-top: 0.3rem;
    }
}

/* BOTONES */

/* Botón Agregar */
.btn-agregar-reverse {
    color: #235B4E;
    background-color: #fff;
    border: 2px solid #235B4E;
    transition: all 0.2s ease-in-out;
}

    .btn-agregar-reverse:hover {
        color: #fff;
        background-color: #235B4E;
        border: 2px solid #1d4d43;
    }

    .btn-agregar-reverse:focus, .btn-agregar-reverse.focus {
        box-shadow: 0 0 0 0.2rem rgba(35, 91, 78, 0.5);
    }

    .btn-agregar-reverse.disabled, .btn-agregar-reverse:disabled {
        color: #fff;
        background-color: #235B4E;
        border: 2px solid #1d4d43;
        opacity: 0.65;
    }
