@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
    outline: none;
}

html {
    margin: 0;
}

body {
    margin: 0;
    font-size: 14px;
    color: #666666;
    font-family: 'Roboto', sans-serif;
    background: #ffd654;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #f7aa1d;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #34b9cf;
}

.clear {
    clear: both;
    width: 100%;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
}

.wrapper {
    width: 1200px;
    margin: 0 auto 0 auto;
}

.login-body {
    position: fixed;
    width: 300px;
    left: calc(50% - 150px);
    background: #FFFFFF;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px #888888;
    top: 50%;
    transform: translateY(-50%);
}

.login-body .logo {
    margin-bottom: 20px;
    width: 100%;
    color: #e31e24;
}

.login-body .logo svg {
    fill: currentColor;
}

.form-line {
    position: relative;
    margin-bottom: 10px;
    width: 100%;
}

.form-line input {
    width: calc(100% - 47px);
    height: 30px;
    line-height: 30px;
    border: 1px solid #EFEFEF;
    border-radius: 3px;
    padding: 5px 5px 5px 40px;
    font-size: 1.0em;
}

.form-line:last-child {
    margin-bottom: 0;
}

.form-line i {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.1em;
    text-align: center;
}

.form-line .hatirla-box {
    float: left;
    width: 18px;
    height: 18px;
    border: 1px solid #EFEFEF;
    border-radius: 3px;
    cursor: pointer;
}

.form-line .hatirla-box i {
    position: relative;
    width: 18px;
    height: 18px;
    line-height: 19px;
    display: none;
    font-size: 0.9em;
}

.form-line .hatirla-text {
    float: left;
    height: 21px;
    line-height: 21px;
    margin-left: 10px;
    user-select: none;
}

.form-line button {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background: #f7aa1d;
    border: 1px solid #dc920b;
    color: #FFFFFF;
}

.form-line button:hover {
    background: #34b9cf;
    border: 1px solid #34b9cf;
}

.message {
    line-height: 40px;
    width: calc(100% - 10px);
    padding-left: 10px;
    font-size: 1.0em;
    margin-bottom: 20px;
    color: #ffffff;
    border-radius: 3px;
}

.red {
    background: #9b060b;
}

.green {
    background: #236300;
}

.orange {
    background: #f7aa1d;
}

.message i {
    margin-right: 5px;
}

.login-body p {
    text-align: center;
}

@media only screen and (max-width: 1040px) {

}