body {
    width: 100vw;
    height: 100vh;
    background-color: #ebeef0!important;
}

/* Login form */

.login {
    max-width: 330px;
    padding: 1rem;
}
.login input[type=text] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.login input[type=password] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Menu */

.main-menu {
    width: 230px;
    height: 100%;
    background-color: white;
    border: 1px solid white;
    border-radius: 10px;
}
.main-menu .menu-item {
}
.main-menu .menu-item .icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    color: #FF5722;
}
.user-panel .user-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: -0.5rem;
}
.user-panel .user-role {
    font-size: 0.8rem;
    margin-top: -0.6rem;
}

/* Content */

.content-container {
    background-color: white;
    border: 1px solid white;
    border-radius: 10px;
    overflow-y: scroll;
    overflow-x: hidden;
}