/* New Layout Styles - Overriding existing styles */
body {
    background: linear-gradient(135deg, #E1EDFF 0%, #FFEFF1 100%) !important;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: 'Nanum Gothic', 'Malgun Gothic', Dotum, sans-serif;
}

#header {
    background: none !important;
    width: auto !important;
    height: auto !important;
    margin-bottom: 20px;
    display: block !important;
    text-align: center;
}

#header .header_logo {
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
    display: block;
}

#header .header_logo img {
    height: 55px;
    margin-bottom: 10px;
}

#login_wapper {
    width: 1080px !important;
    max-width: 90% !important;
    height: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    top: auto !important;
    margin: 0 auto !important;
    border: 1px solid #eee !important;
    text-align: left !important;
    overflow: hidden;
}

#login_wapper .login {
    display: none;
}

.new-login-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.login-section {
    flex: 1;
    padding: 30px 45px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-section.left {
    border-right: 1px solid #eee;
    background-color: #fcfcfc;
    background-image: url('sso_login_bg.png');
    background-repeat: no-repeat;
    background-position: 115% -30%;
    background-size: 40%;
}

.login-section.right {
    background: #fff;
    padding-top: 50px;
}

.login-title-text {
    font-size: 36px;
    font-weight: 700;
    color: #888;
    line-height: 1.2;
    word-spacing: -2px;
    margin-top: -10px;
}

.login-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    letter-spacing: -0.5px;
    margin-top: 25px;
}

.login-section.right .login-title-text {
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: -2px;
    font-weight: 700;
}

.login-section.right .login-title-text .headline-font {
    font-size: 30px;
}

.btn-integrated {
    display: block;
    width: 100%;
    padding: 15px 0;
    background: #0B7DDD;
    color: #fff !important;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none !important;

}
.btn-integrated:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #0B7DDD;
}

.input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
    height: 48px;
    background: #fafafa;
}
.input-group input:focus {
    background: #fff;
    border-color: #aaa;
    outline: none;
}

.btn-general {
    width: 130px;
    background: #004592;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    line-height: 1.2;
    padding: 0;
    height: 101px;
    font-family: 'Pretendard', sans-serif;
}

.btn-general:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #004592;
}

.login-utils {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.login-utils a {
    color: #666;
    text-decoration: none;
}
.login-utils .divider {
    margin: 0 5px;
    color: #ddd;
}

.footer-new {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}
.footer-new a {
    text-decoration: none;
    font-weight: bold;
}
.footer-new .privacy-link {
    color: #002666;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Pretendard', sans-serif;
}

.login-title-text .headline-font {
    font-family: 'HYHeadLine-Medium', 'HYHeadLine', sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 32px;
}

@media (max-width: 920px) {
    #login_wapper {
        width: 95% !important;
        flex-direction: column;
        overflow: visible;
    }
    .new-login-container {
        flex-direction: column;
    }
    .login-section.left {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }
    .btn-general {
        width: 100px;
        height: auto;
        padding: 10px 0;
    }
    .login-section {
        padding: 30px 20px;
    }
}

