html{
    height: 100%;
    width: 100%;
}
body{
    margin: 0px;
    padding:0px;
    height: 100%;
    position: relative;
    font-family: "Arail","微软雅黑","Heiti";
    background: #333;
    box-sizing: border-box;
}
.pCenter{
    position: absolute;
    height: 400px;
    width: 100%;
    background:#fff;
    left:50%;
    top:55%;
    transform: translate(-50%,-50%);
    box-shadow:0 2px 5px rgba(0,0,0,0.3);
}
.tCenter{
    text-align: center;
}
.logo{
    width: 200px;
    height: 100px;
    margin: 0px;
    display: inline-block;
    color: #fff;
    line-height: 64px;
    font-size: 20px;
    letter-spacing: .05em;
    vertical-align: middle;
    position: absolute;
    left: 50%;
    top:-110px;
    transform: translateX(-50%);
    
}
.logo .icon{
    display: inline-block;
    width:100%;
    height: 100%;
    background: url(../../images/app/sundance_logo.svg) no-repeat center;
    background-size: 80%;
}
.appTitle{
    text-align: center;
    margin: 50px 0px 30px 0px;
    font-size: 24px;
    color: #fed817;
}
.row{
    width: 400px;
    margin: 30px auto;
    font-size: 14px;
    position: relative;
}
.ctrlLabel{
    color: #727171;
    font-size: 16px;
    margin-right: 10px;
    width: 60px;
    display: inline-block;
    text-align: right;
}
.ctrlInput{
    width: 100%;
    height: 40px;
    border: #ddd 1px solid;
    border-radius: 2px;
    padding: 5px 20px;
    box-sizing: border-box;
    background:#f4f5f7;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
}
.ctrlInput.error{
    border: #e76565 solid 1px;
    background:#f7e3e3;
}
.ctrlCheck{
    
}
.ctrlBtn{
    width: 100%;
    height: 40px;
    color: #fff;
    font-size: 16px;
    border: none;
    background: #fed817;
    border-radius: 2px;
}
.ctrlBtn:hover{
    background: #fed817;
    cursor: pointer;
}
label.error{
    color: #c00;
    font-size: 12px;
    display: block;
    position: absolute;
    height: 20px;
    line-height: 20px;
    left: 0;
    right: 0;
    padding: 0 10px;
    text-align: center;
}
.row.rememberMe{
    margin-bottom:0;
}
.rememberMe .ctrlCheck{
    margin-right:10px;
}
.row.submit{
    margin-top:10px;
}