@charset "UTF-8";

html, body {
    width: 100%;
    height: 100%;
    font-family: "Microsoft JhengHei Light", "Microsoft YaHei UI Light", "Microsoft YaHei UI";
    font-size: 14px;
    color: #030303;
}

#login-form {
    display: flex;
    width: 100%;
    height: 100%;
    background-image: url("../images/bg_img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    justify-content: center;
    align-items: center;
}

#login-form .form-box {
    display: flex;
    width: 750px;
    height: 400px;
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(60, 60, 60, 0.4);
}

#login-form .form-box .form-box-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 100%;
}

#login-form .form-box .form-box-left h2 {
    height: 60px;
    line-height: 60px;
    font-size: 26px;
}

#login-form .form-box .form-box-left label {
    display: flex;
    width: 300px;
    height: 80px;
    justify-content: flex-start;
    align-items: center;
}

#login-form .form-box .form-box-left label strong {
    width: 50px;
}

#login-form .form-box .form-box-left label input {
    flex: 1;
    height: 40px;
    border: none;
    border-bottom: 1px solid #636363;
}

#login-form .form-box .form-box-left label input:focus {
    border-bottom-color: #509ffe;
}

#login-form .form-box .form-box-left button[type="submit"] {
    width: 135px;
    height: 35px;
    border: none;
    background-color: #509ffe;
    color: #ffffff;
    margin-top: 20px;
}

#login-form .form-box .form-box-right {
    width: 200px;
    height: 100%;
    background-image: url("../images/loading_right.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}