*{
    position: relative;
}
input:hover,input:focus,input:active{
    box-shadow: none !important;
}
[v-cloak] {
  display: none;
}
img{
    max-width: 100%;
    height: auto;
}
body{
    width: 100vw;
    height: 100vh;
    background-color: #eee;
}
.authBox{
    width: 450px;
    height: 100vh;
    margin: auto;
    background-color: #fff;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 30px;
    background-image: url(https://d3z8e406b2zna.cloudfront.net/images/login_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.authBox .logo{
    width: 80%;
    margin-bottom: 20px;
}
.authBox .loginBox{
    width: 100%;
    padding: 0px;
    background-color: transparent;
    border-radius: 30px;
    /*box-shadow: 2px 2px 5px rgba(0,0,0,0.2);*/
}
.boxTitle{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    letter-spacing: 2px;
}
.boxTitle hr{
    border-top: 1px solid #999;
    width: 100%;
}
.boxTitle span{
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.authBox .form-control{
    width: 100%;
    height: 50px;
    margin: 20px 0px;
    border: 1px solid #000;
    border-radius: 30px;
    text-align: center;
}
.btn:active,
.btn:focus{
    box-shadow: none;
}
.btn-login{
    width: 100%;
    height: 50px;
    background: #EBEBEB;
    border-radius: 6px;
    color: #b5b5b5;
    margin-top: 10px;
    box-shadow: none;
    outline: none;
}
.btn-join{
    width: 100%;
    height: 50px;
    background: #D7000F;
    border-radius: 6px;
    color: #fff;
    margin-top: 10px;
    box-shadow: none;
    outline: none;
}
.btn-join:hover{
    color: #fff;
}
.btn-signup,
.btn-signup:hover,
.btn-line,
.btn-line:hover{
    width: 100%;
    height: 50px;
    background-color: #4ead69;
    border-radius: 6px;
    color: #fff;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-signup i,
.btn-line i{
    margin-right: 10px;
    font-size: 24px;
}
.authBox .footer-action{
    width: 80%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.authBox .footer-action .btn{
    font-size: 14px;
    color: #333;
}
.or{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0px;
}
.or span{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #666;
    padding: 0px 10px;
    flex-shrink: 0;
}
.or hr{
    border-top: 1px solid #ccc;
    width: 100%;
}
.blockUI{
    z-index: 9999 !important;
}
.blockUI.blockMsg{
    padding: 30px 15px !important;
    border: none !important;
    color: #fff !important;
    background:  rgba(0,0,0,0.5) !important;
    border-radius: 15px !important;
}
.authBox .footer-action .btn.btn-join{
    color: #000;
}
.loginBox .picture{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: auto;
    margin-bottom: 30px;
    /*border: 3px solid #00b900;*/
    /*box-shadow: 2px 2px 5px #666;*/
}
.loginBox .inputArea input{
    border: 0;
    border-bottom: 1px solid #d8d8d8;
    border-radius: 0;
    text-align: left;
    margin: 0;
    padding: 0;
    background-color: transparent;
}
.loginBox .loginInputBox{
    margin: 30px 0;
}
.loginInputBox ::placeholder {
    color: #b2b2b2;
    opacity: 1;
}
.loginInputBox button{
    border: 0;
    background-color: transparent;
    position: absolute;
    right: 0;
    bottom: 12px;
}
.forgetPsw{
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    margin-bottom: -40px;
}
.inputArea{
    margin: 10vh 0;
}
.copyRight{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0px;
    bottom: 15px;
    width: 100%;
    font-size: 12px;
}
@media(max-width: 576px){
    .authBox .logo{
        width: 85%;
    }
    .authBox .loginBox,
    .authBox .footer-action{
        width: 100%;
    }
    .authBox .loginBox{
        padding: 0px;
    }
}