@charset "utf-8";
/* CSS Document */

@-webkit-keyframes setbackgroundcolor {
    to {
        background: transparent;
        color: whitesmoke;
    }
}
input:-webkit-autofill {
    /*自动填入文本颜色*/
    -webkit-text-fill-color: whitesmoke !important;
    /*自动填入光标颜色*/
    caret-color: white;
    /*背景透明；原理：动画由透明变有背景色；参数：背景色属性、动画时间、动画速度曲线、延迟时间*/
    transition: background-color 0s linear 3600s;
}

#login {
    color: whitesmoke;
    width: 100%;
    height: 100%;
    position: fixed;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow: auto;
    padding-top: 75px;
    padding-bottom: 100px;
}

/* 输入错误信息 */
.errorinfo {
    color: red;
    background: rgba(255, 0, 0, 0.2);
    font-size: .8em;
    padding: 10px;
    margin-bottom: 3px;
    border-radius: 5px;
}
#errorclose {
    float: right;
    cursor: pointer;
}

.retour {
    display: block;
    text-align: right;
    color: #C4A886;
    transition: .2s;
}
.retour:hover, .forgetcode:hover {
    color: whitesmoke;
    text-decoration: underline;
}

#loginbox {
    width: 400px;
    margin: auto;
    padding-top: 15px;
}
.logobox {
    width: 100px;
    margin: auto auto 10px;
}
.logobox img {width: 100px;}
.formUp {
    height: 165px;
    border-bottom: 1px dotted rgba(196, 177, 140, 0.5);
}
h1 {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    color: #C4A886;
    padding-top: 20px;
    padding-bottom: 20px;
}
.input-group {padding-top: 10px;}
.input-group-addon, .form-control {
    background: transparent;
    border-color: #4e4e4e;
    transition: .2s;
}
.form-control {
    height: 56px;
    color: whitesmoke;
    border-left: 1px dotted rgba(78, 78, 78, 0.5);
}
.form-control:focus {
    border-color: #C4A886;
    border-left: 1px dotted rgba(78, 78, 78, 0.5);
    box-shadow: none;
}
.glyphicon-envelope, .glyphicon-lock {
    color: #4e4e4e;
    transition: .3s;
}

.choix {
    padding-bottom: 10px;
    font-size: .8em;
    cursor: pointer;
}
.choixicon {padding-right: 5px;}
.glyphicon-check, .glyphicon-unchecked {color: #C4A886;}
#forgetcode {
    color: #878787;
    font-size: .8em;
    padding: 5px 0 10px 0;
    transition: .2s;
    cursor: pointer;
}
.connexion {
    width: 400px;
    height: 56px;
    background-color: #C4A886;
    border: 0;
    border-radius: 3px;
    color: black;
    font-size: 1.2em;
    font-weight: 600;
    transition: .2s;
    margin: 20px 0;
}
.connexion:hover, .btn-default:hover {
    color: whitesmoke;
    background-color: #87714f;
}
#inscrire {
    padding-top: 12px;
    text-align: center;
    margin-top: 10px;
}
.btn-default {
    height: 56px;
    color: black;
    font-weight: 600;
    background-color: #C4A886;
    border: 0;
}
#retrievecode {display: none;}
#retrieveinfo {
    display: none;
    font-size: .8em;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

.sharing-exp {
    padding: .5em;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #1a1a1a;
}
.sharing-exp p {font-size: .8em;}
.sharing-l, .sharing-r {
    float: left;
    width: 84%;
}
.sharing-l {
    font-size: 2em!important;
    padding-top: .2em;
    color: #C4A886;
    text-align: center;
    width: 15%;
}
.sharing-r {
    padding-left: 1em;
    border-left: 1px dotted rgba(196, 177, 140, .5);
}
.sharing-exp h2 {
    color: #C4A886;
    font-weight: bold;
    text-align: center;
    padding-bottom: .5em;
}


@media (max-width: 1280px) {
    #login {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    .errorinfo {
        padding: 7px;
        margin-bottom: 2px;
        border-radius: 3px;
    }
    #loginbox {
        width: 320px;
        padding-top: 10px;
    }
    .logobox {
        width: 70px;
        margin: auto auto 7px;
    }
    .logobox img {width: 70px;}
    .formUp {height: 135px;}
    h1 {padding: 14px 0;}
    .input-group {padding-top: 7px}
    .form-control {
        height: 40px;
        font-size: .8em;
    }
    .choix {padding-bottom: 7px;}
    .choixicon {padding-right: 4px;}
    #forgetcode {padding: 3px 0 7px 0;}
    .connexion {
        width: 320px;
        height: 40px;
        margin: 14px 0;
        border-radius: 2px;
    }
    #inscrire {
        padding-top: 8px;
        margin-top: 7px;
    }
    .btn-default {height: 40px;}
    #retrieveinfo {
        padding: 7px;
        margin-top: 7px;
        border-radius: 3px;
    }
}
