@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@800&family=Noto+Sans+KR:wght@500&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
}

body {
    font-family: 'Namun Gothic', sans-serif;
    background: #f6f5f7;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1{
    color: #3c4096;
    font-size: 40px;
}

h2{
    color: #3c4096;
    font-size: 24px;
    padding-top: 30px;
}

h3{
    color: #ffffff;
    font-size: 30px;
    text-shadow: 2px 2px 2px #838182;
    text-align: left;
}

h4{
    font-size: 40px;
    color: #3c4096;
}

h5{
    font-size: 18px;
    color: #3c4096;
    font-weight: bold;
}

.container1{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container2{
    background: #dbdae6;
    width: 50%;
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
 

    /* width: 1000px;
    min-height: 100vh;
    display: block;
    background-color: #dbdae6;
    padding: 290px 165px 165px; */
}

.logoPC{
    width: 100%;
    padding: 122px 122px 50px;
    display: flex;
    justify-content: left;
}
.welcome{
    width: 100%;
    padding: 60px 122px;
}
.login{
    width: 100%;
    padding: 150px 185px 50px;
}
.input{
    width: 100%;
    padding: 20px 185px;
}

.input100{
    display: block;
    width: 100%;
    height: 46px;
    background: #3f3d56;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.2;
    padding: 0 15px;
    border: 1px solid #3f3d56;
    border-radius: 8px;
}

::placeholder{
    color: #ffffff;
    opacity: 1;
}

.save-id{
    font-family: 'Noto Sans KR', sans-serif;
    color: #3f3d56;
    font-size: 13px;
    width: 100%;
    padding: 10px 185px 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.txt1{
    font-size: 13px;
    line-height: 1.4;
    color: #555555;
}

.btn_login_container{
    width: 100%;
    text-align: center;
}

.btn_login{
    font-family: 'Noto Sans KR', sans-serif;
    width: 300px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #3f3d56;
    font-weight: 500;
    font-size: 16px;
}

.copyright{
    font-family: 'Noto Sans KR', sans-serif;
    width: 100%;
    color: #3f3d56;
    font-size: 13px;
    text-align: center;
    margin-top: 80px;
}






/*--TABLET-*/
@media (max-width: 1280px) {
    .container1 {
        display: none;
    }
    .container2 {
        width: 100%;
        height: 100%;
    }
    .pc {
        display: none;
    }
    .logo-mobile{
        width: 100%;
        height: 100px;
    }
    .copyright{
        margin-top: 20px;
    }
    .login{
        padding: 0 185px;
    }
    .save-id{
        padding: 10px 185px 40px;
    }
}
@media (min-width: 1281px) {
    .mobile {
        display: none;
    }
}
/*--MOBILE-*/
@media (max-width: 991px) {
    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 12px;
    }
    .login {
        padding: 0px 50px 0;
    }
    .logo-mobile{
        width: 100%;
        height: 100px;
    }
    .input {
        padding: 20px 50px;
    }
    .save-id{
        padding: 0 50px 30px;
        font-size: 11px;
    }
    .txt1{
        font-size: 11px;
    }
    .btn_login {
        width: 200px;
    }
    .copyright{
        font-size: 11px;
        padding: 0 50px;
        margin-top: 20px;
    }
}