.login-container {
    font-family: NotoSansKR-Regular;
}
input[type="checkbox"] { display: none; }
.custom-checkbox {
    position: relative;
    padding-left: 30px; /* 이미지 공간 확보 */
    cursor: pointer;
    user-select: none;
}

/* 체크 안 된 상태 */
.custom-checkbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: var(--checkbox-img, url('/templets/main/img/02Unselected.png'));
    background-size: cover;
}

/* 체크된 상태 */
.custom-checkbox input[type="checkbox"]:checked + .custom-checkbox::before {
    background-image: url('/templets/main/img/01Selected.png');
}

.section_login {
    font-family: "Noto Sans KR", sans-serif;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: start;
    height: 78vh;
    margin: 0;
}

.login_form{
    border-top: 1px solid #333;
    padding-top: 35px;
}

.login-container {
    width: 680px;
    padding: 0 40px 40px 40px;
    box-sizing: border-box;
    text-align: center;
}

.login-container h1 {
    margin-top: 120px;
    margin-bottom: 80px;


    font-family: NotoSansKR-Bold;
    font-size: 55px;
    color: #000000;
    letter-spacing: -2px;
    text-align: center;
    line-height: 76px;
    font-weight: 700;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    height: 60px;

    font-family: NotoSansKR-Regular;
    font-size: 18px;
    color: #333333;
    letter-spacing: -0.5px;
    line-height: 26px;
    font-weight: 400;

    background: #FFFFFF;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.05);
}

.login-container input[type="text"]::placeholder,
.login-container input[type="password"]::placeholder {
    font-family: NotoSansKR-Regular;
    font-size: 18px;
    color: #BBBBBB;
    letter-spacing: -0.5px;
    line-height: 26px;
    font-weight: 400;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 40px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 30px;
}

.options a {
    text-decoration: none;
    margin-left: 5px;
    margin-right: 5px;
}

.join_btn{
    font-family: NotoSansKR-Regular;
    font-size: 14px;
    color: #2050DD;
    letter-spacing: -0.5px;
    line-height: 22px;
    font-weight: 500;
}

.text_bar{
    color: #DADADA;
}

.options a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 300px;
    height: 64px;

    font-family: NotoSansKR-Regular;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    text-align: center;
    line-height: 30px;
    font-weight: 400;

    border: 1px solid #173582;
    border-radius: 32px;
    background: #2050DD;
    cursor: pointer;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border: 1px solid #173582;
    border-radius: 5px;
}