/* 20241112 login_ver2 적용 */

.login_bg {
    background: linear-gradient(180deg, #1B2331 0%, #3C3E60 100%);
    height: 100vh;
    width: 100%;
}

/* 로그인 시작 */
.login_article {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    padding: 20px;
    border-radius: 10px;
    transform: translate(-50%, -50%);
}

.login_section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 로그인 메인 글귀 */
.login_h1 {
    margin-bottom: 74px;
    font-weight: 600;
    font-size: 55px;
    color: #fff;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02rem;
}

/* 로그인 input 창 */
.login_input_wrap {
    width: 412px;
}

/* input 필드의 기본 스타일 */
.login_section input {
    width: 100%;
    height: 60px;
    padding: 18px 54px;
    outline: none;
    background-color: #41455A;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    color: white;
    border: none;
    /* input autocomplete 시 input 박스 색상 자동 변경 색상 -> dark 색상으로 */
    color-scheme: dark;
}

/* 포커스될 때 보더와 텍스트 색상 변경 */
.login_section input:focus {
    border: 1px #89B4FF solid;
    color: #FFFFFF;
}

/* placeholder 색상 제어 (포커스 시) */
input:focus::placeholder {
    color: var(--white-color);
}

input::-webkit-input-placeholder {
    color: rgb(131, 140, 154);
}

.login_input_div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login_id_div,
.login_pw_div {
    position: relative;
}

.login_id_div input.error,
.login_pw_div input.error {
    border-color: #E11C1C;
}

.login_id_svg,
.login_pw_svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}


.login_id_svg,
.login_pw_svg::placeholder {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.login_chk_div {
    display: flex;
}

.login_chk_div label {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    color: #455379;
    cursor: pointer;
}

.login_btn_div {
    width: 100%;
    margin-bottom: 20px;
}

.login_section button {
    width: 100%;
    height: 60px;
    padding: 10px;
    margin-top: 30px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(90deg, #3B486E 0%, #425178 27.67%, #4B5B84 100%);
    color: white;
    font-size: 20px;
    font-weight: 700;
    box-sizing: border-box;
    cursor: pointer;
}

/* 부모 요소 Flexbox 설정 */
.login_chk_div {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 기본 체크박스 숨기기 */
.id_chk_btn {
    display: none;
}

/* 커스텀 체크박스 디자인 */
.login_chk_div label {
    transition: 0.3s;
}

.login_chk_div label::before {
    content: "";
    width: 19px;
    height: 19px;
    border: 1.5px solid #455379;
    border-radius: 50%;
    background-image: url("../../images/icons/ico_login_check.svg");
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
    margin-right: 6px;
    transition: 0.3s;
}

/* 체크된 상태일 때 텍스트 색상 변경 */
#id_chk:checked+label {
    color: #FFFFFF;
}

/* 체크된 상태일 때 스타일 */
.id_chk_btn:checked+label::before {
    background-color: #fff;
    border-color: #fff;
}

/* 유효성 검사 경고 메시지 */
.validation-msg {
    padding-top: 16px;
    font-size: 12px;
    font-weight: 400;
    color: #E11C1C;
    line-height: 18px;
}