@font-face {
    font-family: 'Comforta-Bold';
    src: url('../fonts/Comfortaa-Bold.ttf')
}

@font-face {
    font-family: 'Comforta-Regular';
    src: url('../fonts/Comfortaa-Regular.ttf')
}

@font-face {
    font-family: 'Comforta-Light';
    src: url('../fonts/Comfortaa-Light.ttf')
}

@font-face {
    font-family: 'Comforta-Medium';
    src: url('../fonts/Comfortaa-Medium.ttf')
}

:root {
    --color: #3B527A;
    --colorTr: #3b527ad7;
    --colorTr3: #acbfdaa2;
    --color2: #6C90BF;
    --color3: #ACBFDA;
    --color4: #D8E0ED;
}
body {
    font-family: 'Comforta-Regular';
}

.bg-login {
    height: 100vh;
    background-color: var(--colorTr);
    color: white;
}

.img_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
}

.input_primary {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 0 5px var(--color);
    margin: 8px 0;
    padding: 0 5px 0px 40px;
}

.input_primary::placeholder {
    padding: 0 5px 0px 0px;
    color: black;
}

.icon_input {
    position: absolute;
    left: 5%;
    top: 20px;
    color: black;
    font-size: 20px;
}

.btn_primary {
    width: 150px;
    height: 40px;
    background-color: var(--color3);
    color: black;
    border-radius: 8px;
    border: none;
    margin: 10px 0;
    font-size: 14px;
    font-weight: bold;
    transition: 0.4s;
}

.btn_primary:hover {
    transition: 0.4s;
    background-color: var(--color2);
    color: white;
}

.footer_custom {
    width: 100%;
    height: 60px;
    background-color:  rgb(49, 49, 49);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 120px;
    color: white;

}

.img_logo {
    width: 40%;
}

.loading_body {
    display: none;
    width: 500px;
    height: auto;
    border-radius: 12px;
    background-color: var(--colorTr3);
    position: fixed;
    bottom: 30px;
    right: -60%;
    padding: 10px 6px;
    font-size: 14px;
    box-shadow: 1px 0px 3px var(--color3);
    backdrop-filter: blur(5px);
    font-weight: bold;
}

.loading_quad {
    width: 40px;
    height: 40px;
    background-color: var(--color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


/* Estilo para botones de perfilado */
.btn_perfil {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    margin: 0 5px;
}
.btn_perfil i {
    font-size: 24px;
}

.btn_perfil_active {
    background-color: var(--color2);
    box-shadow: 0 0 3px var(--color3);
    color: white;
}

.btn_perfil_active i {
    font-size: 24px;
}

.link_route {
    color: white;
    text-decoration: none;
    font-family: 'Comforta-Bold';
}
@media (min-width: 200px ) and (max-width: 1020px){
    .btn_perfil {
        width: 80px;
        height: 80px;
        border: none;
        border-radius: 6px;
        font-size: 8px;
        font-weight: bold;
        margin: 0 5px;
    }
    .footer_custom {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 0;
        font-size: 14px;
    }
    .footer_custom div {
        margin: 10px 0;
    }

    .img_bg {
        min-height: 100%;
    }
}