@charset "utf-8";

/* Codefram CDT | 허주원 | 2021-07-15 */
.left-section{
    flex-shrink: 0;
    width:700px;  
    position: relative;  
}

.login-wrap {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:350px;
    min-height:400px;
}

.login-wrap .head {
    padding-bottom:20px;
    text-align: center;
}
.login-wrap .middle {
    width:100%;
    height:100%;
    border-top:0;
}
.login-wrap .middle .mid-top {
    width:100%;
}
.login-wrap .middle .mid-top .title {
    font-size:25px;
    color:#fff;
    text-align: center;
    font-weight:700;
}
.login-wrap .middle .mid-top .info-txt {
    font-size:13px;
    color:#555;
    line-height: 1.6em;
}
.login-wrap .middle .mid-top .info-txt.mb {
    margin-bottom:80px;
}

.login-wrap .middle .mid-top .info-txt .bold {
    font-weight:bold;
}
.login-wrap .middle .mid-top .info-txt .red {
    font-weight:bold;
    color:#f04d4d;
}
.login-wrap .middle .mid-top form,
.login-wrap .middle .mid-top fieldset {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    margin-top:70px;
}
.login-wrap .middle .mid-top form label {
    font-size: 0;
    width: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
    text-indent: -9999px;
}
.login-wrap .middle .mid-top form input.inputtxt {
    display: inline-block;
    padding: 8px 15px;
    background: transparent;
    color: #fff;
    border:0;
    border-bottom: 1px solid #fff;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.4em;
    width: 100%;
}
.login-wrap .middle .mid-top form input.inputtxt::placeholder {
    color:#fff;
}
.login-wrap .middle .mid-top form input.inputtxt:focus {
    outline: 0;
    
}
.login-wrap .middle .mid-top form .btn-login {
    display: block;
    font-size: 18px;
    color: #fff;
    width: 100%;
    padding-left: 25px;
    height: 60px;
    border: 0;
    background-color: #4180FF;
    border-radius:4px;
    cursor: pointer;
    margin-top:15px;
    font-weight:200;
}


.right-section{
    flex-grow: 1;
    background-color: #fff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding:80px 80px 0;
}
.notice-list.login{
    width:100%;
    height:calc(100% - 100px)
}
.notice-list h2{
    font-size:18px;
    font-weight:700;
    padding-left:25px;
    position: relative;
    margin-top:40px;
}
.notice-list h2:first-child{
    margin-top:0;
}
.notice-list h2:before{
    content:'';
    width:16px;
    height:5px;
    background-color: #222;
    position: absolute;
    left:0;
    top:50%;
    transform: translateY(-50%);
}
.notice-list .text-line{
    padding-left:30px;
    margin-top:20px;
}
.notice-list .text-line .txt{
    font-size:16px;
    color:#222;
    line-height:1.4em;
    margin-bottom:8px;
}
.notice-list .text-line ul.depth01{
    position:relative;    
}
.notice-list .text-line ul.depth01 > li{
    font-size:16px;
    padding-left:10px;
    position: relative;
    color:#222;
    margin-bottom:8px;
    line-height:1.4em;
}
.notice-list .text-line .blue{
    color:#0054ff;
}

.notice-list .text-line .red{
    color:#ff0000;
}
.notice-list .text-line .bold{
    font-weight: 600;
}

.notice-list .text-line ul.depth01 > li:before{
    position:absolute;
    content:'';
    left:0;
    top:10px;
    width:6px;
    height:2px;
    background-color:#222;
}

.notice-list .text-line ul.depth01 > li ul.depth02{
    position: relative;
    margin-left:10px;
    margin-top:10px;
}
.notice-list .text-line ul.depth01 > li ul.depth02 > li{
    font-size:15px;
    padding-left:10px;
    position: relative;
    color:#222;
    margin-bottom:8px;
    line-height:1.4em;
}
.notice-list .text-line ul.depth01 > li ul.depth02 > li:before{
    position:absolute;
    content:'';
    left:0;
    top:10px;
    width:3px;
    height:3px;
    border-radius:50%;
    background-color:#222;
}

.right-section .footer{
    padding:30px 0;
    width:100%;
}
.right-section .footer p{
    text-align: center;
    font-size:12px;
    color:rgba(0,0,0,0.5);
    line-height: 1.6em;
}