:root {
    --back: #D9D3BF;
    --color: #133122;
}

body {
    background: var(--back);
    font-family: 'Questrial', sans-serif;
}

.neoform {
    border-radius: 50px;    
    background: #BDB59B;
    box-shadow: 20px 20px 60px #a19a84,
        -20px -20px 60px #d9d0b2;
}

.neoform-solid {
    background: #BDB59B;
    box-shadow: 10px 10px 40px #a19a84,
        -10px -10px 40px #d9d0b2;
}

.cardLogin {
    width: 500px;
    max-width: 90%;
    margin: 40px;
}

.text-white {
    color: var(--color) !important;
}

.alert-login {
    top: 40px;
}

.menu {
    width: 18rem;
    margin-left: 0px;
    transition: 1s ease-in-out;
}

.full-menu {
    margin-left: -18rem;
    transition: 1s ease-in-out;
}

#menu.full-menu::after {
    margin-left: 0px;
    transition: 1s ease-in-out;
}

#menu.full-menu::before {
    margin-left: -18rem;
    transition: 1s ease-in-out;
}

.btn-menu {
    width: 50px;
    height: 50px;
    font-size: 24pt;
    color: var(--color);
    border: none;
    background: transparent;
    right: -50px;
}

.links {
    transition: 1s ease-in-out;
}

.active-nav {
    color: #9f731c !important;
    transition: 1s ease-in-out;
    transform: scale(1.05);
}

.contenidos {
    max-height: 100vh;
    overflow: auto;
}

.titulos {
    text-align: right !important;
}

.search-input {
    background: #FFC657 !important;
    border-radius: 10px;
    border: 3px solid #266445 !important;
}

.bg-light {
    background-color: #FFC657!important;    
    border: 3px solid #266445 !important;
}

.cnt-radios {
    max-height: 480px;
    overflow-y: auto;
}

.backInputs {
    background: #FFC657;
    color: #133122;
    width: 150px;
    border: 3px solid #266445 !important;
}



.icon-red {
    width: 40px;
}

.card-radio {
    height: calc(100vh - 200px);
    overflow: clip;
    border: none !important;
    background-color: #061423 !important;
}

.fondo {
    box-sizing: border-box;
    z-index: 1;
}

.fondo img {
    animation: zoom-in-zoom-out 30s ease infinite;
    box-sizing: border-box !important;
    object-fit: cover !important;
    position: center center !important;
    overflow: clip;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1.2, 1.2);
    }

    50% {
        transform: scale(1.5, 1.5);
    }

    100% {
        transform: scale(1.2, 1.2);
    }
}


.lamina {
    z-index: 2;
    background: rgba(0, 0, 0, 0.42);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12.8px);
    -webkit-backdrop-filter: blur(12.8px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    font-family: 'Century Gothic';
    font-weight: 500;
}

.caratula {
    width: 150px;
    height: 150px;
    overflow: clip;
    border-radius: 10px;
    background: #061423;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.tema {
    color: #fff;
    font-size: 14pt;
}

.redes ul li a {
    color: #fff;
}

.redes ul li a i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.identidad {
    top: 20px;
    right: 20px;
    gap: 10px;
}

.identidad img {
    border-radius: 50%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.identidad span {
    color: #fff;
}

.footer {
    bottom: 15px;
    font-size: 10pt;
    color: #cecece;
}

@media screen and (max-width: 960px) {
    .repro {
        margin-top: 20px;
    }

    .menu {
        width: 18rem;
        margin-left: -18rem;
        transition: 1s ease-in-out;
    }

    .full-menu {
        margin-left: 0px;
        transition: 1s ease-in-out;
    }

    #menu.full-menu::after {
        margin-left: -18rem;
        transition: 1s ease-in-out;
    }

    #menu.full-menu::before {
        margin-left: 0px;
        transition: 1s ease-in-out;
    }
}