/*contend div*/
:root {
    --main-bg-color: #185294;
}
.loginContent { 
    background-color: white;
    width:500px;
    height:600px;
    position:absolute;
    left:50%;
    top:50%;
    margin-top:-300px; /* 高度一半 */
    margin-left:-250px; /* 寬度一半 */
    border-radius: 2.5px;
    box-shadow:3px 3px 9px #A0A5A5;
}
.navbar {
    background-color: var(--main-bg-color);
    border-bottom: 1px solid #9ab3bd;
    color: #335b75;
    display: flex;
    justify-content: space-between!important;
}
.navbar a:hover {
    color: #000;
}
.navbar h1 {
    cursor: default;
}
.navbar .user {
    cursor: pointer;
    font-size: 2em;
}
/* login content table */
.loginTable {
    width: 100%;
    padding-top:40px
}
.text {
    text-decoration:none;
    font-family:'Noto Sans TC',sans-serif;
    letter-spacing:0.6;
}

/* login input text field */
.row {
    margin-bottom: 15px;
}

/* div.form text
{
    font-weight: bolder;
    color: red;
	/* font-size: 0.9em; */
	/* display: block; */
/* }
div.form textarea {
    background-color: red;
} */ 
.loginBtn {
    width: 300px;
    height: 40px;
    background-color: #0A82DC;
    border-radius: 2.5px;
    border: none;
    color: white;
    outline:none;
    cursor: pointer;
    margin-top: 10px
}
.backBtn {
    width: 300px;
    height: 40px;
    background-color: #3D9970;
    border-radius: 2.5px;
    border: none;
    color: white;
    outline:none;
    cursor: pointer;
}

#LoginForm_verifyCode {
    height: 35px;
    width: 300px;
    outline:none;
    border-width: 1px;
    border-style: solid;
    border-color: #A0A5A5;
    border-radius: 2.5px;
}
#yw0 {
    border-width: 1px;
    border-style: solid;
    border-color: #A0A5A5;
    border-radius: 2.5px;
    margin-left: 15px;
    margin-right: 15px;
}
.label {
    margin-left: 10px;
}