/* 基本設定 */
* {
    box-sizing: border-box;
    font-family:Helvetica,Arial, sans-serif;
}

html, body{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    /* flex布局（方便） */
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    
}
/* 響應式 */
@media screen and (max-width: 720px) {
    .mainLeft{
        flex: 1 0 0;
    }

    .mainRight{
        display: none;
    }

}

/* 主體 */
.mainBox {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border-radius: 25px;
    /* box-shadow: 3px 6px 20px #0000001d; */

    display: flex;
    background: url(../images/LoginBack.png) no-repeat center center;
    background-repeat: no-repeat;
    background-size: 70% 100%;
    background-origin: content-box;
}

/* 主體左面 */
.mainLeft {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 25px 0 0 25px;
}

.formMain {
    width: 86%;
    height: 80%;
    margin: 0;
    padding: 0;
    border-radius: 25px;
    /* box-shadow: 3px 6px 20px #0000001d; */

    display: flex;
}
/* 主體右面 */
/*.mainRight {
    width: 38%;
    height: 100%;
    padding: 0;
    margin: 0;
    border-radius: 25px;
    background-image: url( ../images/LoginBack2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-origin: content-box;
}*/

.mainRight {
    width: 38%;
    height: 100%;
    padding: 0;
    margin: 0;
    border-radius: 25px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-origin: content-box;
}

/* 主體左面 的 內容 */
.LoginBox {
    width: 45%;
    height: 85%;
    margin: 0;
    padding: 2% 5%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-around;
    background: url(../images/middleBack.png) no-repeat center center;
   
    box-shadow: 0 4px 6px #00000009;
}
/* Title */
h1 {
    font-size: 5vh;
    padding: 0;
    margin: 0;
}
/* 輸入位置 */
.inputBox {
    height: 14%;
    
    border-bottom-style:solid;

    display: flex;
    align-items: center;

    font-size: 3vh;
}
.inputBtn {
    height: 14%;
   
    display: flex;
    align-items: center;
    font-size: 3vh;
}

/* 帳戶及密碼 */
.inputBox input {
    height: 98%;
    width: 100%;
    padding: 0;
    margin: 0;

    border:none;
    outline:none;

    flex: 1 0 0;
    font-size: 3vh;

    box-sizing: border-box;
}
/* 按鈕 */
.LoginBottonBox {
    width: 100%;
    height: 10%;
   
    display: flex;
    justify-content: center;
}

input[type="submit"], input[type="reset"] {
    width: 40%;
    height: 100%;
    margin: 0 6%;
    font-size: 2.5vh;
    border-radius: 5px;
    background-color: #348F6C;
    color: #FFFFFF;
    border: none;
    /* border-color: #707070; */
    /* background: none; */
}

input[type="submit"]:active, input[type="reset"]:active{
    background-color: rgb(188, 170, 67);
}

/* 忘記密碼 */
a {
    align-self: center;
    color: #B6A014;
}
