body{
    display: flex;
    padding: 0px;
    margin: 0px;
}
.logo-img {
    float:left;
    width:100px;
    height:100px
}
.login-panel {
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.horizontal-panel-center{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.horizontal-panel-left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.horizontal-panel-right{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.title-panel{
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 40px;
    width: 100%;
    background-color:#ff7c18;
    position: fixed;
}
.title{
    color: white;
    line-height: 32px;
    margin: 4px;
    flex-grow:1;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.title-left{
    width: 40px;
    color: white;
    line-height: 32px;
    margin: 4px;
    text-align: center;
}
.title-right{
    width: 40px;
    color: white;
    line-height: 32px;
    margin: 4px;
    text-align: center;
}
.title-icon{
    height: 16px;
}
.foot-icon{
    height: 20px;
    margin-top: 6px;
}
.foot-panel{
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 40px;
    width: 100%;
    position: fixed;
    bottom: 0px;
}
.foot-item{
    height: 40px;
    width: 50%;
    text-align: center;
    line-height: 40px;
    border: #ffffff 1px solid;
    cursor: pointer;
}
.content-body{
    margin-top:40px;
    margin-bottom: 40px;
}
.form-button{
    margin-top: 20px;
    width: 80%;
    height: 46px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.15px;
    background-color: #ff7c18;
    color: #f9f9f9;
    box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #f9f9f9;
    border: none;
    outline: none;
}
.form-input{
    margin-top: 20px;
    width: 80%;
    padding: 5px;
    height: 46px;
    padding-left: 15px;
    font-size: 13px;
    letter-spacing: .15px;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    background-color: #ecf0f3;
    transition: .25s ease;
    border-radius: 5px;
    box-shadow: inset 2px 2px 4px #d1d9e6, inset -2px -2px 4px #f9f9f9;
}

.menu-panel{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 42px;
    width: 150px;
    background-color:#c9c9c9;
    position: fixed;
    right: 10px;
    border:1px solid #c1c1c1;
}

.btn{
    height: 32px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.15px;
    background-color: #ff7c18;
    color: #f9f9f9;
    border: none;
    outline: none;
}

.btn-success{
    background-color: #179F5D;
    color: #f9f9f9;
}

.btn-danger{
    background-color: #DD5044;
    color: #f9f9f9;
}
.common-panel{
    display: flex;
    flex-direction: row;
}

