.sign-banner{
    background-image: url(../images/sub/sign/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.signin-form{
    max-width: 540px;
    width:100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
.sign-input{
    width: 100%;
    margin: 0 auto;
    appearance: none;
    border: 0;
    border-bottom: 1px solid #565656;
    background-color: transparent;
    padding: 10px 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.sign-btn{
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: var(--main-blue1);
    margin-top: 20px;
    border: 0;
    cursor: pointer;
    transition: all .3s;
}
.sign-btn:hover{
    background-color: var(--main-blue2);
}

.find-pw{
    display: block;
    text-align: center;
    margin-top: 30px;
}
.find-pw a{
    font-size: 14px;
    font-weight: 500;
    color: var(--main-blue1);
}
.pw-popup p{
    margin-bottom: 30px;
}

.input-box{
    width: 49%;
    margin-bottom: 20px;
}
.input-box label{
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.input-box input{
    border: 1px solid #c3c3c3;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    height: 50px;
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
    border-radius: 6px;
}
.sign-note{
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: var(--main-blue2);
}
.terms-box{
    width: 100%;
    padding:20px 30px;
    margin: 0 auto;
    margin-top: 50px;
    border: 1px solid #565656;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 20px;
}
.terms-modal-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}
.terms-modal-btn{
    max-width: 270px;
    width: 100%;
    height: 50px;
    background-color: var(--main-green);
    color: #ffffff;
    border-radius: 36px;
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;
    display: flex;
    justify-content: center;
    align-items:center;
    transition: all .3s;
}
.terms-modal-btn::before{
    content: '';
    width: 23px;
    height: 26px;
    background-image: url(../images/terms.png);
    margin-right: 4px;
}
.terms-modal-btn:hover{
    border:3px solid var(--main-green);
    background-color: #ffffff;
    color: var(--main-green);
  
}
.terms-modal-btn:hover::before{
    background-image: url(../images/terms_on.png);
}
.terms-modal-btn img{
    width: auto;
    max-height: 26px;
}
.popup-txtarea{
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    height: 300px;
    overflow-y: auto;
    padding:20px 10px;
    box-shadow:inset 1px -4px 14px #12121260;

}