/**
 * Copyright (C) GOYOURLIFE INC. - All Rights Reserved.
 * Unauthorized copying of this file, via any medium is strictly prohibited.
 * Proprietary and confidential.
 * Written by Doris Wang (Exce) <doris.wang@goyourlife.com>, July 2018.
 * 
 * Project : GoWatch 820i (code name : GOLiFE IRONMAN)
 *
 * This is the main logic of the MCU bootloader.
 * 
 * @author Doris Wang (Exce) <doris.wang@goyourlife.com>
 * @link http://www.goyourlife.com
 * @copyright Copyright &copy; 2018 GOYOURLIFE INC.
 */

body{
    margin: 0px;
    background-image: url("/protected/views/app/images/loginBG.png") ;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}

/* .bodyMask {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .65);
} */

.title {
    color: #cecdcd;
    font-size: 35px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    left: 15px;
}

.loginContent {
    background-color: black;
    width: 500px;
    height: 370px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -185px;
    /* 高度一半 */
    margin-left: -250px;
    /* 寬度一半 */
    border-radius: 15px;
    /* box-shadow: 3px 3px 9px #707070; */
    color: white;
    opacity: 0.6;
}

.formTitle {
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 25px;
}

.inputLabel {
    float: left;
    margin-left: 85px;
    color: #A0A5A5;
}

#LoginForm_username {
    height: 35px;
    width: 280px;
    outline: none;
    margin-bottom: 20px;
    margin-top: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #A0A5A5;
    border-radius: 2.5px;
    background: url("/protected/views/app/images/userIcon.png") no-repeat 3%;
    background-size: 30px;
    padding-left: 45px;
    background-color: transparent;
    color: white;
}

#LoginForm_password {
    height: 35px;
    width: 280px;
    outline: none;
    margin-top: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #A0A5A5;
    border-radius: 2.5px;
    background: url("/protected/views/app/images/passwdIcon.png") no-repeat 3%;
    background-size: 30px;
    padding-left: 45px;
    background-color: transparent;
    color: white;
}

.loginBtn {
    width: 100px;
    height: 40px;
    background-color: #1f1f1fe5;
    border-width: 1px;
    border-style: solid;
    border-color: #A0A5A5;
    border-radius: 2.5px;
    color: rgb(240, 240, 240);
    outline: none;
    cursor: pointer;
    margin-top: 30px;
    font-size: large;
}

.hint {
    position: absolute;
    bottom: 0;
    color: #cecdcd;
    padding: 0 5px;
}

.mailTo {
    color: #cecdcd;
    padding: 0 5px;
}