﻿@charset "utf-8";
/* CSS Document */

* {
    font-family: "微软雅黑";
    font-size: 14px;
}

body {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    height: 100%;
    position: relative;
}



a {
    text-decoration: none;
}

.background{
    background-color: rgb(76, 143, 191);
    background-image: url('../images/background.jpg');
}

.center{
    width:320px;
    height:auto;

    position: absolute;
    top: calc(50vh - 200px);
    left:calc(50vw - 180px);

    user-select: none;

}
.title{
    width: 100%;
    height: 40px;
    color:#fff;
    text-align: center;
    font-size: 30px;
    line-height: 36px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-family: verdana,arial,tahoma,helvetica,sans-serif;
}

.center form{
    background-color: rgba(255,255,255,0.3);
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
    min-height: 130px;
    border-color: #99bbe8;
    border-style: solid;
    border-width: 0;
}


.row{
    width: 320px;
    min-height: 60px;
    border-bottom: solid 1px rgba(255,255,255,0.3);
}

form .row:last-child{
    border-bottom:none ;
}
.row div{
    display: inline-block;
}

.row div.icon{
    width: 28px;
    height: 28px;
    margin: 16px 8px 16px 18px;
    background-repeat: no-repeat;
    background-image: url('../images/login-icon.png');
    vertical-align: middle;
}

.icon-user{

    background-position: 0 0;
}

.icon-password{
    background-position: 0 -112px;
}

.row input[type='text'], .row input[type='password']{
    width: 240px;
    height: 30px;
    line-height: 28px;
    padding: 0;
    padding-left: 6px;
    font-size: 18px;
    border-width: 0px;
    background-image: none;
    background-color: transparent !important;

    color: #FFFFFF !important;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.3);
    box-shadow: none;
    border-radius: 0;
    line-height: 50px;
    display: inline-block;

    vertical-align: middle;
    border: none !important;
}

input::-webkit-input-placeholder{
    font-size: 14px;
    color:#AAA;
    filter:alpha(opacity=50);

}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#AAA;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#AAA;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
    color:#AAA;
}


.row label{
    color: #FFFFFF !important;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.3);
    padding-left: 36px;
    line-height: 36px;
    font-size: 15px;
}


.row input[type='checkbox']{

    width: 20px;
    height:20px;
    line-height: 36px;
    vertical-align: middle;
    color:#fff;
}


.row input[type='button']{
    width:90%;
    height: 36px;
    line-height: 36px;
    border-radius: 3px;
    border: solid 1px #1270B2;
    box-shadow: inset 0px 1px 0px rgba(255,255,255,0.15);
    background-image: linear-gradient(#0d92f2,#0086e5);
    background-color: #0086E5;
    margin: 10px;
    cursor: pointer;

    vertical-align: middle;
    color: #fff;
    font-size: 18px;
}


#message{
    width:320px;
    min-height: 50px;
    background-color: rgba(100,100,100,0.3);
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);

    font-size: 14px;
    color:#fff;
    line-height: 30px;
    text-align: center;
    display:none;
}



