
/*---------------------登入頁面-----------------------*/
body{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    height: 100vh;
    color: #fff;
    /*background-image: linear-gradient(
            125deg,#EEF7F3,#38B484,#EEF7F3,#38B484
    );*/
    background-size: 400%;
    animation: move 20s infinite;
}
@keyframes move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.login_main{
    background-image: linear-gradient(125deg, #5bca78, #76c28a, #89d79d, #6ca47b);
    background-size: 200%;
    animation: move 20s infinite;
    width: 100%;
}
.login_main>div{
    display: flex;
   /* height: 80vh;
    margin-top: 20vh;*/
    justify-content: space-between;
    /*background-color: #1c4398;*/
    background-image: url(/static/images/login_bg.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    background-position-x: -20%;
    background-size: 67%;
    width: 100%;
}
.login_title{
    display: flex;
    align-items: flex-start;
    height: 70vh;
    margin-left: 5%;
    width: 55%;
}
.login_title>div{}
.login_title>div>h1{
    text-align: start;
    color: #fff;
    font-size: 44px;
}
.login_title>div>p{
    text-align: start;
    color: #FF9800;
    font-size: 22px;
    margin-top: 10px;
}
.login_warp{
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 40%;
    background-color:#c3e9cd;
}
.login_box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
    height: max-content;
    margin-top: 40%;
}

.login_box > div.login_logo {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
}

.login_box > div.login_logo img {
    width: 77px;
}

.login_box > h1 {
    text-align: center;
    font-size: 26px;
    font-weight: normal;
    color: #478056;
    margin-bottom: 26px;
}

.login_box ul {
    background-color: unset;
}

.login_box ul > li {
    margin-bottom: 20px;
    border: 1px solid #cacaca;
    border-radius: 5px;
    background-color: #ffffff;
}

.login_box ul > li > p {
    color: #ffdfdf;
    font-size: 12px;
    line-height: 18px;
}

.login_box ul > li > div {
    display: flex;
    align-items: center;
}

.login_box ul > li:nth-child(3) {
}

.login_box ul > li:nth-child(3) > div > img {
    width: 120px;
}

.login_box ul > li > div:hover {
    border-color: #38B484;
    border-right-width: 1px;
    z-index: 1;
}

.login_box ul > li > div input {
    caret-color: #3f85c6;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    color: rgba(0, 0, 0, .85);
    font-size: 16px;
    line-height: 30px;
    transition: all .3s;
    padding: 0;
    border: none;
    outline: none;
    margin-left: 20px;
    /*-webkit-box-shadow: 0 0 0 1000px #f3fbfe inset;*/
}

.login_box ul > li > div:before {
    font-family: "h_icomoon";
    background-color: #f3fbfe;
    padding: 10px;
    font-size: 20px;
    color: #89d79d;
    border-radius: 5px 0 0 5px;
}

.login_box ul > li:nth-child(1) > div:before {
    content: "\e900";
}

.login_box ul > li:nth-child(2) > div:before {
    content: "\e90d";
}

.login_box ul > li:nth-child(3) > div:before {
    content: "\e90c";
}

.login_box button {
    background-color: #89d79d;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
}

.login_box button:hover {
    background-color: #478056;
}

.inp_border {
    border-color: #478056 !important;
    /*box-shadow: 0 0 3px 2px #1c43985e;*/
}