﻿@charset "utf-8";

body {
    background: rgb(255, 255, 255);
}

#wrap {
    overflow-y: hidden;
}

.container {
    min-height: 800px;
    overflow: hidden;
}

.loginBox {
    position: fixed;
    top: 370px;
    border: 2px solid lightgray;
    left: 50%;
    width: 400px;
    margin: -200px 0px 0px -200px;
    height: 500px;
    border-radius: 20px;
    text-align: center;
    background: rgb(247, 248, 249);
    overflow: hidden;
    z-index: 100;
}

@media only screen and (max-width: 640px) {
    .loginBox {
        left: 5%;
        width: 90%;
        margin: -250px 0px 0px;
    }
}


.loginTop h1 {
    position: relative;
    width: 250px;
    height: 70px;
    margin: 40px auto;
    background: url("../img/logo.png") left top / cover no-repeat;
}

.loginBox .btn {
    background: rgb(97, 92, 92);
}

section {
    display: block;
    unicode-bidi: isolate;
}

.loginBox > ul {
    position: relative;
    min-height: 150px;
}

.loginBox .loginTop {
    height: 290px;
}

.loginBox .loginTop h2 {
    position: absolute;
    top: 80px;
    width: 100%;
    text-align: center;
}

.loginBox .inputForm {
    position: absolute;
    top: -170px;
    width: 90%;
    margin: 0% 5% 20px 5%;
    padding: 40px 30px 30px;
    border: none;
    border-radius: 10px;
    background: rgb(255, 255, 255);
    z-index: 10;
}

.loginBox .inputForm li {
    margin-bottom: 10px;
}

.loginBox .inputForm input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    border: 1px solid rgb(238, 238, 238);
    border-radius: 20px;
    padding-left: 15px;
    margin-bottom: 10px;
}

.loginBox .inputBot {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: rgb(119, 119, 119);
}

.loginBox .inputBot a {
    display: inline-block;
    padding: 0px 10px;
}

.loginBox .btn {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0px auto;
    text-align: center;
    line-height: 50px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 25px;
    border: none;
    background: #1e80cf;
}

