body {
    background-color: #f4f6f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 0;
}

.login-container {
    max-width: 500px;
    width: 100%;
    background-color: white;
    padding: 48px 36px 36px 36px;
    border-radius: 18px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
}

.logo {
    max-height: 80px;
    width: 85%;
    margin-bottom: 18px;
}

.form-title {
    font-weight: bold;
    color: #004d7a;
}

footer {
    margin-top: auto;
    background-color: #fff;
    color: #555;
    padding: 20px 10px;
    font-size: 0.85rem;
    text-align: center;
    border-top: 1px solid #ddd;
}

.btn-ingresar {
    background-color: #ffee00;
    color: #000;
    font-weight: bold;
    border: none;
}

.btn-ingresar:hover {
    background-color: #e6d400;
}

@media (max-width: 1281px) {
    .login-container {
        margin-top: 20px;
    }

    footer {
        margin-top: 20px;
    }

    .text-muted {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .login-container {
        max-width: 95vw;
        padding: 32px 8px 24px 8px;
    }
    .logo {
        max-height: 48px;
    }
}

.text-muted {
    font-size: 1.3rem;
}

#sidebar.sidebar-min {
    height: 100vh;
    background: #111;
    width: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px; /* Ajusta según el alto de tu header */
}

.sidebar-label {
    display: none;
}

@media (min-width: 768px) {
    #sidebar.sidebar-min {
        width: 200px;
    }
    .sidebar-label {
        display: inline;
        margin-left: 10px;
    }
}

.main-content {
    margin-left: 60px;
    padding: 20px;
}

@media (min-width: 768px) {
    .main-content {
        margin-left: 200px;
    }
}

.btn-outline-uniandes{
    background-color: #fff;
    color: #000;
    border: none;   

}

.btn-outline-uniandes:hover{
    background-color: #FF0;
    color: #000;
    border: none;  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-uniandes{
    background-color: #FF0 !important;
    color: #000;
    font-weight: 600;
}