﻿@charset "utf-8";
/*CSS Info ======================================================================
File Name: Login.css
Creater: Sharon
CreateDate: 2017/11/03
Version: 1.0
---------------------------
【 風格 】
    農廢露燃 藍綠色系
【 Table of Contents 】
	DIV XHTML頁面
	Free Style
	使用jQuery
	登入首頁
【 Responsive Web Design 】
    寬度1024px以上
=================================================================================*/

/*===============================================================================
                         以下是 Login 頁版面設定
=================================================================================*/
body {
    background-color: #fff3e2;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
}

h2 {
    font-size: 2em;
    color: #4a4a4a;
}

h3 {
    font-size: 1.75em;
}

h4 {
    font-size: 1.25em;
}

#Header {
}

#Content {
}

/*===============================================================================
                         General Setting
=================================================================================*/
#MainWrap {
    height: calc(100vh - 12rem);
    min-height: 600px;
    text-align: center;
    background-image: url(../images/LoginBG.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

#MyLoginArea, #MyLogoutArea {
    vertical-align: middle;
    height: 580px;
    border: 0px\9;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #FFF;
    width: 760px;
    margin: 0 auto;
    margin-top: 40px;
    margin-top: calc(calc(100vh - 720px) * 0.5 );
    box-shadow: rgba(0, 0, 0, 0.3) 5px 5px 10px;
}

@media screen and (max-width: 1023px) {
    #MyLoginArea {
        width: 80%;
    }
}

.myLoginBG {
    float: right;
    width: 300px;
    height: 500px;
    background-image: url(../images/LoginBG_bottom.png), url(../images/LoginBG_top.png);
    background-position: bottom center, top center;
    background-size: 300px auto, 300px auto;
    background-repeat: no-repeat, no-repeat;
}

    .myLoginBG .logo {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        margin-top: 150px;
        background-image: url(../images/LoginLogo.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 150px auto;
    }

.myLoginCont {
    height: 500px;
}

h1 {
    margin-top: 80px;
    background-color: none;
    color: #655045;
}

h2 {
    margin-top: 10px;
    margin-bottom: 50px;
    color: #4E8C07;
}

.MyInputField {
    height: 3rem;
    line-height: 3rem;
    width: 350px;
    text-align: right;
    margin: 0 auto;
}

    .MyInputField span {
        color: #444E50;
        font-weight: bold;
        margin-right: 0.5em;
    }

    .MyInputField input {
        border: none;
        border-bottom: 2px solid #444E50;
        width: 220px;
        text-align: center;
    }

.loginBtn {
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: 2.5rem;
    line-height: 2.5rem;
    width: 350px;
    background-color: #CCC;
    border: none;
    border-radius: 20px;
    color: #3c3530;
    font-weight: bold;
}

    .loginBtn:hover {
        background-color: #ffa324;
        color: #FFF;
        box-shadow: rgba(0, 0, 0, 0.3) 3px 3px 5px;
        transform: translateY(-2px);
        -o-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        -moz-transform: translateY(-2px);
        -webkit-transform: translateY(-2px);
    }

.btnGroup .loginBtn {
    width: 170px;
}

.errorMsg {
    color: #e84444;
}


/*--------------------Logout-------------------*/
#MyLogoutArea {
    padding: 20px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    background-image: url(../images/visual.png);
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

    #MyLogoutArea h1 {
        margin-bottom: 50px;
    }

    #MyLogoutArea p {
        text-align: center;
        line-height: 50px;
        font-size: 26px;
    }

        #MyLogoutArea p a {
            color: #fa9a32;
            font-weight: bold;
        }

            #MyLogoutArea p a:hover {
                color: #ee8008;
            }
