body {
    padding-top: 0px;
}
   /*登入畫面*/
   .wrap_login {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    background: url(../images/login_bg.jpg)no-repeat;
    background-size: cover;
    transition: all 0.3s;
}
.loginGroup { /*border: 1px solid #eee;*/
    width: 400px;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.InputBox {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 20px 40px 20px;
    background-color: rgba(3,110,184,0.1);
    border: 1px solid rgba(3,110,184,0.4);
    text-align: left;
}

.logo {
    font-size: 3rem;
    line-height: 40px;
    text-align: center;
    font-weight: bolder;
    padding: 0 10px;
    margin: 20px 0;
    color: #0071bc;
    /* color: #fff; */
    text-shadow: 0 0 6px rgba(255,255,255, 0.25);
}
.logo img{
    vertical-align: middle;
}
@media (max-width:414px) {
    .loginGroup {
        width: 97%;
        position: absolute;
        top: 48%;
        left: 50%;
    }
}


.formBox {
    padding: 10px 10px;
}

    .formBox .w100 {
        width: 100%;
    }

    .formBox select {
        margin-bottom: 10px;
    }
    .formBox span{
        font-size: inherit;
    }
    .formBox label{
        font-size: 2rem;
    }

.inline label {
    display: block;
}

.inline .form-control {
    display: inline-block;
}

.code {
    display: inline-block;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%,-75%);
    }

    to {
        opacity: 1;
        transform: translate(-50%,-50%);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(0,-50%);
    }

    to {
        opacity: 1;
        transform: translate(-50%,-50%);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}


/*登入-選擇身份*/
.InputBox p {
    padding: 10px 10px;
    color: #0068b7;
}

/*標題*/
.topBar_fixed {
    z-index: 2;
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

    .width100 {
        width: 100px;
    }
    
.btn-black{
    display: inline-block;
    line-height: 34px;
    padding: 0 10px;
    background: #333;
    color: #fff;
}