* {
    font-family: 'Source Sans Pro', sans-serif;

}

body::before {
    content: "";
    position: fixed;
    top: 0px;
    left: -400px;
    width: 100%;
    height: 100%;
    background: url("../img/_login/fondo.jpeg") no-repeat center center fixed;
    background-size: cover; /* La imagen se ajustará para cubrir todo el contenedor */
    opacity: 1; /* Valor de opacidad deseado */
    z-index: 10;
}

.center-align {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    height: 100%; /* Ajustar la altura del contenedor */
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ajustar la altura al 100% del viewport */
}


form {
    background: rgba(243, 245, 246, 0); 
    margin: 0 auto; /* Centra horizontalmente el formulario */
    margin-top: 0vh; /* Ajusta el margen superior según sea necesario */
    margin-right: 0%; /* Margen derecho para que el formulario aparezca en la derecha */
    max-width: 390px; /* Establece el ancho máximo del formulario */
    padding: 20px 30px;
    border-radius: 0% 100;
    /* box-shadow: 10px 2px 10px #000, 3px 6px 20px #000; */
    background-size: cover;
}



form>.tit,
.tit-npt,
.npt,
span {
    display: block;
    width: 100%;
    margin-bottom: 3px;
}

.tit {
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    font-style: oblique;
    height: 80px;
    color: #4b4d4d;
}

table {
    width: 100%;
    height: 100%;
}

.tit-npt {
    font-size: 18px;
    font-weight: 600;
    margin: 10px;
    background: transparent;
    color: #080808;
}

h2 {
    font-size: 30px;
    background-color: rgba;
    color: rgba;
    padding: 5px;
    border-radius: 10px;
    /* box-shadow: 0 3px 5px rgba(0, 0, 0, 0.50); */
    text-align: center;
    text-shadow: 3px 3px 5px #ffffff;
    margin: 10px;
    font-weight: bold;
    background: transparent;
}

h3 {
    font-family: 'Arial', sans-serif; /* Tipo de fuente */
    font-size: 28px; /* Tamaño de fuente */
    color: #333; /* Color de texto */
    margin-bottom: 20px; /* Espacio inferior entre los encabezados */
    text-align: center; /* Alineación centrada */
}

.npt {
    padding: 14px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: none;
    outline: none;
    border-bottom: 1px solid #0c0c0c;
    margin-bottom: 12px;
    color: #0c0c0c;
    font-weight: 400;
    font-size: 16px;
    background: white;
}

.npt:focus {
    outline: none;
}

span {
    color: #FF2E2E;
    background: transparent;
    font-size: 12px;
}

strong {
    display: block;
    width: 100%;
    text-align: right;
    color: #afafaf;
    font-size: 12px;
}

button {
    border: 0;
    width: 100%;
    height: 40px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    background: #3498db;
    color: #fff;
    font-weight: bold400;
    font-size: 18px;
}

button:hover {
    background-color: #3a9fe2;
}

#alerta {
    display: none;
    margin: auto;
    margin-top: 20px;
    width: 280px;
    padding: 10px 5px;
    background-color: #FFABAB;
    border: 1px solid #FE7C7C;
    border-left: 3px solid #FE7C7C;
    border-bottom: 3px solid #FE7C7C;
    color: #FF2E2E;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
    box-shadow: -11px 10px 15px 0px rgba(0, 0, 0, 0.40);
}

.alert-sys {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 275px;

    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
}

.alert-sys .header {
    background-color: #3498db;
    color: #ffffff;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.alert-sys .body {
    width: 100%;
    padding: 0 15px;
    border: 1px solid #3498db;
    border-radius: 0 0 10px 10px;
}

.alert-sys .body ul {
    padding-inline-start: 10px !important;
}

.alert-sys .body ul li {
    position: relative;
    list-style-type: none;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.alert-sys .body ul li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    width: 5px;
    height: 11px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #00a8a8;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

/*-----------------------------*/

@media only screen and (max-width: 1025px) {
    .alert-sys {
        position: initial;
        margin: auto;
        margin-top: 25px;
        width: 450px;
    }
}

/*-----------------------------*/

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;

}

.form-container {
    margin-left: 10px;
}

.image-left {
    display: flex;
    align-items: center;
}

.image-left img {
    margin-right: 10px;
    display: block;
    width: 50%;
    height: auto;
}



.transparent-image {
    opacity: 0.9;
}

.imglog img {
    background: transparent;
}

.imglog {
    display: flex;
    justify-content: center;
    align-items: center;
}


.informa {
    position: absolute;
    top: 8%;
    left: 29%;
    transform: translate(-40%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.50);
    text-align: center;
    text-shadow: 3px 3px 5px #ffffff;
    margin: 10px;
    font-size: 40px;
    background: transparent;

}