body,html{
    width: 100%;
    height: 100%;
}
body {
    padding-top: 0px;
}
   /*登入畫面*/
   .wrap_login {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    background: url(../Images/Login/login_bg.jpg)no-repeat;
    background-size: cover;
    background-position: center center;
    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;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(var(--ph-green-rgb),0.7);
    text-align: left;
}

.logo .companyName{
    font-size: 5rem;
    line-height: 74px;
    text-align: center;
    font-weight: bolder;
    padding: 0 10px;
    margin: 10px 0;
    color: #484AA3;
    text-shadow: 0 0 6px rgba(255,255,255, 0.25);
}

.logo .systemTitle{
    letter-spacing: 6px;
    font-size: 1.875rem;
    line-height: 1.2;
    text-align: center;
    padding: 0 ;
    margin: 10px 0;
    color: var(--ph-green);
    text-shadow: 0 0 6px rgba(255,255,255, 0.25);
}




.wrap_login .form-group {
    /* padding: 10px 10px; */
    /* margin-bottom: 6px; */
    background: rgba(var(--ph-green-rgb),0.1);
}
.wrap_login .form-group .form-control{
    /* display: initial; */
}
.codeGroup{
    display: flex;
    align-items: center;
}
.codeGroup > *{
    margin: 0 2px;
}
.formBox {
    padding: 10px 10px;
}

.formBox .w100 {
    width: 100%;
}

.formBox select {
    margin-bottom: 10px;
}
.formBox span{
    font-size: inherit;
}
.wrap_login .form-group label{
    /* flex: 0 0 60px; */
    /* display: flex; */
    /* align-items: center; */
    /* margin-right: 10px; */
    /* margin-bottom: 0; */
    /* font-weight: normal; */
    /* font-size: 1rem; */
    color: rgba(var(--ph-blue-rgb) , 1);
    border-right: 1px solid #BDCCD4;
    
}

.inline label {
    display: block;
}

.inline .form-control {
    display: inline-block;
}

.code {
    display: inline-block;
}
.btnGroup a.btn-lineLogin {
    border-radius: 16px;
    padding: 0;
    box-shadow: 1px 10px 10px rgb(0 0 0 / 20%);
}
.btn-lineLogin img{
    height: 36px;
}
@media (max-width:414px) {
    .loginGroup {
        width: 97%;
        position: absolute;
        top: 45%;
        left: 50%;
    }
}
@media (max-width:410px) {
    .wrap_login .codeGroup{
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
    }
    .wrap_login .width80{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .btn-black {
        display: inline-block;
        padding: 0 10px;
        width: 80px;
        text-align: center;
        color: #fff;
    }
}

.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;
    }
    .width80 {
        width: 80px;
    }

.btnGroup{
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
.btnGroup a{
    margin: 0 2px;
    color: #fff;
}       
.btn-black{
    display: inline-block;
    line-height: 34px;
    padding: 0 10px;
    background: #4C4F62;
    color: #fff;
    font-size: 1.2rem;
}       
.btn-black:hover{
    background: #000;
    color: #fff;
}
.btn-grey-o{
    display: inline-block;
    line-height: 34px;
    padding: 0 20px;
    background: #0FC179;
    background: #64697E;
    color: #fff;
    font-size: 1rem;
    border-radius: 20px;
    box-shadow: 1px 10px 10px rgba(0,0,0,0.2);
}
.btn-grey-o:hover{
    background: #4C4F62;
}
.btn-green-o{
    display: inline-block;
    line-height: 34px;
    padding: 0 20px;
    background: #0FC179;
    box-shadow: 1px 10px 10px rgba(0,0,0,0.2);
    color: #fff;
    font-size: 1rem;
    border-radius: 20px;
}
.btn-green-o:hover{
    background: #0D9959;
}
.btn-Purple-o {
    display: inline-block;
    line-height: 34px;
    padding: 0 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #484AA3;
    border: 0px solid #484AA3;
    border-radius: 20px;
    box-shadow: 1px 10px 10px rgba(0,0,0,0.2);
  }
  .btn-Purple-o:hover {
    color: #fff;
    background-color: #3D4184;
    border-color: #0a58ca;
  }



/*footer*/
.loginFooter{
    width: 100%;
    padding: 10px 10px 10px 10px;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    font-size: 1.4rem;
    text-align: left;
    background: rgba(333,333,333, 0.5);
    border-top: 1px solid #fff;
}
.footer{
    max-width: 768px;
    margin: 0 auto;
    line-height: 18px;
    font-size: 1.4rem;
    color: #0068b7;
}
