@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300&display=swap');

html,
body {

    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(224, 224, 224, 1) 100%);
}

.btnInstitucional {
    background-color: #6A0F49;
    color: white;
}

.btnInstitucional:hover {
    background-color: #FFC3D0;
    color: #6A0F49;
}



.bgMorado {
    background-color: #6A0F49;
    padding: 10px;
    transition: all 0.5s;
}

.bgMorado:hover {
    background-color: #6D807F;
}

.bgMorado a {
    color: white;
}

.card-title {
    color: #6A0F49;
}

.nota {
    border-bottom: #6D807F solid 1px;
    padding-bottom: 10px;
}

.nav-item {
    border-right: solid 1px #6D807F;
}

.nav-item:hover {
    background-color: #ffc3d047;
    transition: all 0.7s;
}



.programa {
    width: 200px;
    height: 300px;
    margin: 2px;
}

.imagenPrograma {
    border-radius: 5px;
    position: absolute;
    z-index: 1;
}

.txtPrograma {
    position: relative;
    z-index: 2;
    top: 10px;
    background: #FFC3D0;
    text-align: center;
}

.text-Seccion {
    background-color: #6A0F49;
    color: #ffffff;
    text-align: center;
    padding-top: 20px;
}

.right {
    position: absolute;
    right: 5px;
}

.link_side {
    text-decoration: none;
}

.subtitulo {
    color: #6A0F49;
    font-weight: bold;
}




.form-group-perfil {
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: #d0c3c6 dashed 1px;
}

.btnPerfil {
    position: absolute;
    right: 20px;
}

.desactivado {
    color: #c8c8c8;
}

.cabeceraTabla {
    background-color: #6A0F49;
    color: #FFC3D0;
}

#globalLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #e0e0e0;
    border-top: 6px solid #6A0F49;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

.loader-content p {
    margin-top: 10px;
    color: #6A0F49;
    font-weight: bold;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}