@charset "utf-8";

/*** 공통으로 사용할 CSS *********************************************************/
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* div[class^="inner"] {
    outline: 3px solid red;
} */

header {
    width: 100%;
    background-color: #f6f5ef;
    height: 115px;
    padding: 20px 0;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}

header .inner-header {
    width: 80%;
    max-width: 1280px;
    margin: 0 auto;
    /* outline: 2px solid red; */
}

header h1.logo {
    float: left;
}

header h1.logo a {}

header h1.logo a img {
    height: 75px;
}

header nav.gnb {
    float: right;
}

header nav.gnb ul {}

header nav.gnb ul li {
    float: left;
    margin-right: 40px;
    line-height: 80px;
    font-size: 18px;
    text-transform: uppercase;
}

header nav.gnb ul li:last-child {
    margin-right: 0;
}

header nav.gnb ul li a {
    color: #555;
}

header nav.gnb ul li a:hover {
    color: #007042;
    text-decoration: underline;
}

section {
    width: 100%;
    background: url(../img/login_bg.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;

    padding: 70px 0 80px;
    margin-top: 115px;
    /* 고정된 header 높잇값만큼! */
}

section .inner-section {
    width: 570px;
    margin: 0 auto;

    /* outline: 2px solid lime; */
}

section .inner-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 400;
    color: #fff;
}

section .inner-section .loginbox {
    background-color: #fff;
    color: #666;
    padding: 20px 0;
}

.loginbox .welcome {
    font-size: 18px;
    text-align: center;
    border-bottom: 0.6px solid #ccc;
    padding-bottom: 20px;
}

.loginbox .welcome span {
    color: #007042;
}


.loginbox .login {
    /* form 덩어리가 들어가 있는 div! */
    padding: 20px;
}

/* 아이디, 비밀번호 입력 input */
.loginbox .login input[type="text"],
.loginbox .login input[type="password"] {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    text-indent: 10px;
}

/* placeholder 색상변경 */
input::placeholder {
    color: #999;
}

.loginbox .login label {
    display: block;
    margin-bottom: 30px;
    color: #777;
}

.loginbox .login label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
}

.loginbox .login input[type="submit"] {
    width: 100%;
    display: block;
    border: 0;
    line-height: 60px;
    background-color: #007042;
    color: #fff;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.loginbox .notice {
    padding: 0 20px;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: -0.4px;
}

.loginbox .notice li:first-child {
    margin-bottom: 10px;
}

.loginbox .btn {
    /* background-color: greenyellow; */
}

.loginbox .btn a {
    font-size: 18px;
    display: block;
    width: 33.33%;
    float: left;
    margin: 20px 0;
    color: #777;
    text-align: center;
    position: relative;
}

.loginbox .btn a::after {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background-color: #ccc;
    position: absolute;
    top: 0;
    left: 100%;
}

.loginbox .btn a:last-child::after {
    display: none;
}

/* .loginbox .btn a~a {
    border-left: 1px solid #ccc;
    box-sizing: border-box;
} */

.loginbox .btn a:hover {
    color: #007042;
    font-weight: bold;
}


footer {
    width: 100%;
    background-color: #2c2a29;
    padding: 30px 100px;
    box-sizing: border-box;
}

footer a {
    color: #fff;
}

/* footer .inner-footer {
    width: 80%;
    max-width: 1280px;
    margin: 0 auto;

    outline: 2px solid lime;
} */
footer .links {
    margin-bottom: 20px;
    text-align: center;
}

footer .links ul {}

footer .links ul li {
    display: inline-block;
    margin: 0 10px;
    line-height: 40px;
}

footer .links ul li a {}

footer .btngrp {
    text-align: center;
    margin-bottom: 40px;
}

footer .btngrp a {
    display: inline-block;
    border: 2px solid #fff;
    width: 150px;
    border-radius: 6px;
    padding: 12px 0;
}

footer .info {
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

footer .info p {}

footer .info p span {
    margin-right: 10px;
}