main.login {
    width: 100%;
    height: 100vh;
    background-image: url(../img/login/login_back.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_box {
    width: 437px;
    box-sizing: border-box;
    padding: 60px 45px 50px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
}

img.login_logo {
    width: 222px;
    margin-bottom: 40px;
}

form.login_form {
    text-align: left;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E6E6E6;
}

input.login_mail,input.login_pass {
    width: 100%;
    padding: 16px 14px;
    box-sizing: border-box;
    font-size: 14px;
    border: 1px solid #D8D8D8;
    border-radius: 5px;
}

input.login_mail {
    margin-bottom: 14px;
}

input.login_pass {
    margin-bottom: 20px;
}

.login_keep_label {
    display: block;
    margin-bottom: 20px;
    cursor: pointer;
}

input.form-check-input {
    opacity: 0;
}

.login_keep_label .form-check-label {
    position: relative;
    padding-left: 12px;
}

.login_keep_label .form-check-label:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #D8D8D8;
    position: absolute;
    top: 0;
    left: -20px;
    bottom: 0;
    margin: auto;
}

input.form-check-input:checked + .form-check-label:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 7px;
    border-bottom: 3px solid #0A2F5A;
    border-left: 3px solid #0A2F5A;
    transform: rotate(-45deg);
    top: 0;
    left: -15px;
    bottom: 0;
    margin: auto;
}

input.login_btn {
    display: block;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    background: #082D59;
    border-radius: 5px;
    font-size: 12px;
    border: 1px solid #082D59;
    font-weight: bold;
    cursor: pointer;
    width: 345px;
}

p.login_info {
    text-align: left;
    font-size: 13px;
    line-height: 1.8;
}

p.login_info a {
    color: #000;
    font-weight: bold;
}
