.box-area {
    width: 100%;
    max-width: 930px;
    border-radius: 2rem; /* Rounded sudut */
    overflow: hidden; /* Biar rounded rapi kalau ada bg */
}
.logo-img {
    max-width: 200px; /* default */
}
.bg-box{
    background-size: cover;
}
.bg-blue-50 {
    background-color: rgba(0, 0, 255, 0.7);
}
.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5);
}
.left-box {
    border-start-start-radius: 2em;
    border-end-start-radius: 2em;
    padding: 5rem; /* default */
}
.right-box{
    border-start-end-radius: 2em;
    border-end-end-radius: 2em;
}
@media (max-width: 768px) {
    .logo-img {
    max-width: 125px; /* di HP, logo mengecil */
    }
    .left-box {
    border-end-start-radius: 0;
    border-start-end-radius: 2em;
    padding: 1.5rem; /* di HP, padding mengecil */
    }
    .right-box{
    border-start-end-radius: 0;
    border-end-start-radius: 2em;
    }
}

a.sidebar-link{
    margin-left: 1rem;
    margin-right: 1rem;
}
a.sidebar-link.active,
a.sidebar-link.active i{
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
}

.mask {
    position: absolute;
    background-size: cover;
    background-position: center center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}
