/* Error de minimización. Devolviendo el contenido no minimizado.
(54,12): run-time error CSS1038: Expected hex color, found '#ffff'
(135,12): run-time error CSS1038: Expected hex color, found '#ffff'
(143,12): run-time error CSS1038: Expected hex color, found '#ffff'
 */
/*
    Pantalla Login
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    font-family: inter, serif;
    line-height: 1.5;
    background-color: #0000a3;
}

.color-bg {
    background-color: #5899E2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -999;
    height: 100%;
    width: 100%;
    opacity: 38%;
}

.img-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1000;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Estilos del header */
header {
    padding: 100px;
    display: flex;
    justify-content: flex-end;
}

.header {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    margin-right: 20px;
}

.text-header {
    color: #ffff;
    font-size: 20px;
}

.icon-header {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    margin-bottom: 0.6rem;
    box-shadow: 1px 1px black;
}

.icon-header2 {
    width: 15px;
    height: 15px;
    margin-left: 6px;
    margin-top: 6px;
}

a.dropdown-toggle{
    color: #ffffff;
}

/* Estilos del main */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.card {
    padding: 30px 7rem;
    text-align: center;
    width: 537px;
    height: 600px;
}

.login {
    border-radius: 23px;
    backdrop-filter: blur(5px);
    background-color: rgba(230, 234, 251, 0.8);
    box-shadow: 0 3px 6px 0 #0a8ce2, inset 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border: 1px solid #2a87f2;
}

.logo {
    width: 204px;
    height: 221px;
}

.input-s {
    border-radius: 10px;
    border: none;
    font-size: 16px;
}

span.spanClass {
    background-color: #2b74c4;
}

.color-text1 {
    color: #0000a3;
    font-size: 16px;
    margin-top: 1rem;
}

.color-adv {
    color: #601417;
    font-size: 16px;
}

.p-text {
    margin-top: 1rem;
}

.btn {
    font-size: 18px;
}

.btn-color {
    color: #ffff;
    border-radius: 18px;
    background-color: #2b74c4;
    transition: background-color 0.5s ease !important;
    width: 60%;
}

.btn-color:hover {
    color: #ffff;
    background-color: #000072;
}

.color-text2 {
    color: #1b4e6d;
    padding-top: 4%;
    font-size: 16px;
}

.icons {
    width: 21px;
    height: 21px;
    color: #ffffff;
}

.Lnea-13 {
    width: 100%;
    margin: 20px 0 0;
    border: solid 0.5px #fff;

}

/* Estilos responsivos */
@media (max-width: 500px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 20px;
    }

    main {
        height: auto;
    }



}

@media screen and (max-width: 500px) {
    .card {
        padding: 30px 3rem;
    }
}

