input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #fff !important;
    /* color:#ccc !important; */
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff !important;
    /* color:#ccc !important; */
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff !important;
    /* color:#ccc !important;  */
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #fff !important;
    /* color:#ccc !important; */
}

* {
    box-sizing: border-box;
}

.widthCalc {
    width: -moz-calc(100% -100px);
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px)
}
.relative{
    position:relative
} 
.leftP{
    position: absolute;
    left:0;
    top:0
}
.rightP{
    position: absolute;
    right:0;
    top:0
}
.textL{
    text-align: left;
}
.textC{
    text-align:center
}
.displayB{
    display:block
}
.displayN{
    display:none
}

input,input:focus{
    border: none !important; 
    box-shadow: none !important;
    /* box-shadow: 0 0 1px red; */
    }




html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    background-color: #778899;
    background-size: cover;
    color: #fff;
    overflow: hidden; 
}

.container {
    /* border: 1px solid green; */
    width: 500px; 
    position: relative;
    top:50%; 
    transform: translateY(-50%);

}

.header {
    /* border:1px solid red; */
    text-align: center;
}

.main {
    /* border:1px solid pink; */
    background: rgba(255, 255, 255, .2);
    border-radius: 5px;
}

.main .formBox {
    padding: 50px;
    margin:50px 0;
}

.inputBox {
    position: relative;
    margin: 20px 0;
    
} 

.inputBox .glyphicon-user,.inputBox .glyphicon-eye-open,.inputBox .glyphicon-lock,.inputBox .glyphicon-envelope {
    position: absolute;
    top: 10px;
    /* left: 13px;  */
    /* color:#ccc */
}

.inputBox input {
    /* text-indent: 26px; */
    text-indent: 10px;
    background: none !important;
    border: none !important;
    border-radius: 0!important;
    border-bottom: 1px solid rgb(238, 232, 232)!important;
    -webkit-box-shadow: none; 
    /* color:#ccc */
    color:#fff
}


.inputBox .checkCode {
    font-family: Arial;
    font-style: italic;
    color: Red;
    border: 0; 
    letter-spacing: 3px;
    font-weight: bolder;
    text-indent: 0;
    background: #fff !important;
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 5px;
}

.loginBtn {
    width: 100%;
    /* background: #4386EE; */
    margin-top: 20px;
}