@charset "utf-8";

.wrap.login {
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    letter-spacing: -1px;
}

.wrap.login em,
.wrap.login i {
    font-style: normal;
}
.wrap.login:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 550px 900px 0 0;
    border-color: #6b82a1 transparent;
}
    
.login header {
    position: relative;
    width: 100%;
}
    
.login header h1 {
    position: absolute;
    right: 100px;
    top: 30px;
    width: 140px;
    font-size: 1em;
    text-align: center;
}
    
.login header h2 {
    position: absolute;
    left: 100px;
    top: 30px;
}
    
.login header h2 em {
    position: inherit;
    left: 0;
    top: 30px;
    width: 120px;
    height: 120px;
    background: #ffc000;
    border-radius: 50% 0 50% 50%;
    font-size: 2em;
    color: #373f46;
    line-height: 120px;
    text-align: center;
}

.login header h2 span,
.login header h2 i {
    position: inherit;
    left: 120px;
    top: 90px;
    width: 300px;
    height: 60px;
    text-align: center;
    font-size: 1.8em;
    font-weight: normal;
    color: #fff;
    line-height: 60px;
}

.login header h2 span {
    top: 30px;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}

.login .content {
    margin-top:200px;
}

.wrap_login {
    position: relative;
    margin: 30px auto 0;
    padding: 80px 100px;
    width: 680px;
    background:#f2f2f2;
    border: 10px solid #fff;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.wrap_login h3 {
    margin-bottom: 30px;
    font-size: 3.2em;
    font-weight: bolder;
    text-align: center;
    color: #014da1;
    letter-spacing: -2px;
}

.wrap_login h3 span {
    color: #15375d;
}

.wrap_login li:not(:first-child) {
    margin-top: 10px;
}

.wrap_login input {
    padding: 0 30px;
    width: 480px;
    height: 58px;
    font-size: 1.8em;
    line-height: 58px;
    border-radius: 58px;
}

.wrap_login input:focus {
    outline-color:#014da1;
}

.wrap_login input::placeholder {
    opacity: 0.5;
}

.wrap_login button {
    margin-top: 40px;
    width: 480px;
    height: 60px;
    border-radius: 30px;
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(120deg, #bed62f, #014da1);
}

.wrap_login button:hover {
    transition: 0.3s;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    box-shadow: 2px 3px 3px rgba(0,0,0,0.3);
}

.login footer {
    margin-top: auto;
    padding: 20px 0;
    text-align: center;
}
    