body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #20325d;
    background-image: url(../img-privadas/background.png);
    background-repeat: no-repeat;
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 100%;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(109, 196, 253, 0.2);
}

.containerLogin {
    width: 30%;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(109, 196, 253, 0.2);
}

.tituloGerenciador{
    color:#ED7923;
}

.fixed-bottom {
    background: linear-gradient(to right, #BF7D2A, #ED7923, #2BB3B1);
    width: 100%;
    height: 10px;
}

.btn-primary {
    background-color: #20325d!important ;
}

.tablefooter {
    margin-top: 20px;
}

.sidebar {
    background-color: #333;
    color: #fff;
    height: 100vh;
    width: 300px;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    text-align: center;
}

.sidebar a:hover {
    background-color: #555;
}

.content {
    margin-left: 300px;
    padding: 20px;
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 20%;
    color: #ffffff;
    background-color: #20325d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2);
}

.navbar h1 {
    background: #ffffff;
    color: #20325d;
    padding: 4px;
    border-radius: 12px;
}

.navbar i{
    color:#ED7923;
    font-size: 20px;
}
.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 8px;
    background: linear-gradient(to bottom, #BF7D2A, #ED7923, #2BB3B1);
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navbar li {
    padding: 10px;
    
}

.navbar li a {
    text-decoration: none;
    color: #ffffff;
}