/** LOGIN **/
#login-wrapper {
    width: 100vw;
    height: 100vh;
    background: url(/images/EXH_SH_banner-home.png);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
#login-wrapper form {
    max-width: 500px;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    -webkit-box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.75);
    text-align: center;
}
#login-wrapper form label {
    text-align: left;
    display: block;
}
#login-wrapper form img {
    width: 200px;
}

/** NAVBAR **/
#navbar {
    width: 100%;
    position: fixed;
    height: 50px;
    background: white;
    top: 0px;
    left: 0px;
    border-bottom: 1px solid #e6e6e6;
    z-index: 99;
    -webkit-box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.75);
    display: flex;
}
#navbar > div {
    flex-grow: 1;
}
#navbar > div.right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.wrapper-appraiser {
    margin-top: 50px;
    height: calc(100vh - 50px);
    width: 100vw;
    display: flex;
    overflow: hidden;
}

/** SIDEBAR **/
#sidebar {
    background: rgb(250, 122, 78);
    background: linear-gradient(
        90deg,
        rgba(250, 122, 78, 1) 0%,
        rgba(245, 91, 121, 1) 100%
    );
    -webkit-box-shadow: 3px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 3px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 3px 0px 5px 0px rgba(0, 0, 0, 0.75);
    width: 200px;
    padding-top: 50px;
}
#sidebar ul.list-unstyled {
    padding: 0;
    margin: 0;
}
#sidebar ul.list-unstyled li {
    border-radius: 20px;
    padding-left: 20px !important;
    margin-left: 10px;
    margin-right: 10px;
}
#sidebar ul.list-unstyled li.actived {
    background: white;
    color: #f55b77;
}

.welcome {
    background: #f76367;
    height: 100px;
    -webkit-box-shadow: inset 3px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 3px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: inset 3px 0px 5px 0px rgba(0, 0, 0, 0.75);
    color: white;
    padding: 50px;
}

#main-content {
    flex-grow: 1;
    overflow-y: scroll;
    overflow-x: hidden;
}
