[v-cloak] {
    display: none;
}

* {
    position: relative;
}

*::scrollbar,
*::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.btn:focus,
.btn:active {
    outline: none;
    box-shadow: none;
}

a,
a:hover {
    color: #333;
    text-decoration: none;
}

select:focus,
input:focus,
textarea:focus {
    box-shadow: none !important;
    outline: none !important;
}
body {
    font-family: "微軟正黑體";
    background-color: #f6f7f8;
}
.loginPage{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.loginPage .logo img{
    width: 300px;
    margin-bottom: 15px;
}
.loginPage .loginBox{
    background-color: #fff;
    width: 400px;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 5px 5px 5px #ccc;
}
.loginPage .loginBox .formGroup{
    margin-bottom: 30px;
}
.loginPage .loginBox .formGroup .form-control{
    height: 40px;
}
.loginPage .loginBox .btn{
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background-color: #333;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loginPage .loginBox .btn.btn-line i{
    font-size: 24px;
    margin-right: 10px;
}
.loginPage .loginBox .btn.btn-line{
    background-color: #00c300;
}
.loginPage .actions{
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.agree{
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    margin-bottom: 15px;
}
.agree i{
    margin-right: 5px;
    font-size: 18px;
}
.agree i.fa-square-check{
    color: #127A97;
}
@media screen and (max-width: 576px) {
    .loginPage .loginBox{
        width: 90vw;
    }
}
