@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);

body {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/bg_img.jpg);
    background-size: cover;
    /*font-family: 'Noto Sans TC', sans-serif;font-family:"SF Pro TC",'Courier New', 'Verdana',"HanHei TC","SF Pro Text","Myriad Set Pro","SF Pro Icons","PingFang TC","Helvetica Neue","Helvetica","Arial",sans-serif;
        font-family: 'Courier New', -apple-system, "Helvetica Neue", Helvetica, Arial, "Source Han Sans", "Noto Sans CJK", "Hiragino Sans", "Microsoft Jhenghei", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;*/
    font-family: 'Noto Sans TC',    -apple-system, "Microsoft Jhenghei", "Microsoft YaHei", "WenQuanYi Micro Hei", Helvetica, Arial, sans-serif ;

}

* {
    box-sizing: border-box;
    color: #545454;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}



/*Sign in Card part*/

.logo {
    float: left;
    height: 32px;
    margin-top: 16px;
    margin-left: 8px;
}

.SignSection {
    position: relative;
    margin: 0 auto;
    width: 400px;
    top: 40%;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}
.SignSection h2 {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 30px;
    line-height:150%;
}
.SignSection h2.error {
    color: #FF4444;
}
.SignSection h2.success {
    color: #000;
}

.card {
    position: relative;
    background-color: #FFFFFF;
    padding: 76px 32px 32px 32px;
    margin-bottom: 12px;
    border-radius: 2px;
    box-shadow: 0 4px 18px 0 rgba(74, 74, 74, 0.1);
}

.avatar {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    /*top: -28px;*/
    top: -47px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 2px solid #EBEBEB;
    background-color:white;
    background-size: cover;
    background-position: center;
}



/*Input part*/

.inputSec {
    margin-bottom: 10px;
}
.inputSec:last-child {
    margin-bottom: 36px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 4px;
}
input[type=text], input[type=password] {   
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Then Style */
    background: transparent;
    outline: none;
    border-radius: 0px;
}
input {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 9px;
    border: 2px solid #EBEBEB;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    box-sizing: border-box;
}
input:focus {
    outline: none;
    border: 2px solid #545454;
}
input.error {
    border-color: #FF4444;
}

.invaild {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 300;
    background-color: #FF4444;
    padding: 4px;
    text-align: center;
}

input[type="password"] {
    letter-spacing: 4px;
    font-family: caption;
}


/*Sign in Action button*/

.signIn, .reset {
    font-size: 14px;
    text-align: center;
    padding: 11px;
    width:100%;
    display: block;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.signIn {
    color: #FFFFFF;
    background: #545454;
    border: 2px solid #545454;
    border-radius: 1px;
    margin: 10px auto;
}
.signIn:hover {
    color: #FFFFFF;
    background-color: #646464;
    border-color: #646464;
}
.signIn.disabled {
    cursor: default;
    border: 2px solid #DDDDDD;
    background-color: #DDDDDD;
}


/*Reset button*/

.reset {
    color: #545454;
    background: #FFFFFF;
    border: 2px solid #D8D8D8;
    border-radius: 1px;
    text-align: center;
}
.reset:hover {
    color: #545454;
    background-color: #F4F4F4;
}



/*Footer part*/

.details {
    font-size: 12px;
    font-weight: 300;
}
.details span {
    float: right;
}
.details span, .details a {
    color: #9B9B9B;
}
.details a:hover {
    color: #686868;
}

.details_m {
    margin-top: 60px;
    text-align: center;
    font-size: 12px;
    display:none;
}


