.logo {
    text-align: center;
    padding-top: 30px;
}
.logo img {
    max-width: 90%;
}
.simpleui-input-inline {
    margin: 10px 0px;
}
*{
    margin: 0;
    padding: 0;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e2e2e5;
}
.login-main{
    width: 640px;
    height: 320px;
    display: flex;
    justify-content: center;
}
.left{
    width: 50%;
    height: calc(100% - 40px);
    background-color: #082a4d;
    position: relative;
    top: 20px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
@media (max-width: 600px) {
  .left {
    display: none;
  }
}
.left p{
    color: #999;
    font-size: 14px;
    margin: 40px;
    line-height: 22px;
}
.right{
    width: 50%;
    height: 100%;
    background-color: #474a59;
    color: #f1f1f1;
    position: relative;
    box-shadow: 0 0 40px 16px rgba(0,0,0,0.2);
}

.form{
    margin: 40px;
    position: absolute;
}
.form label{
    color: #c2c2c2;
    display: block;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 5px;
}
.form input{
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #f2f2f2;
    background-color: transparent;
    border: none;
    outline: none;
    text-indent: 2px;
}
.form button{
    margin: 10px 0px;
    width: 100%;
    color: #d0d0d0;
    font-size: 18px;
    background-color: transparent;
    border: none;
    outline: none;
}