/* BASIC css start */
.login-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
}
.login-container .h_title {
    text-align: center;
    margin-bottom: 30px;
}
.login-container .h_title h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* 1. »ó´Ü ÀÏ¹Ý ·Î±×ÀÎ Æû (»ó½Ã ¿­¸² ¹Ú½º ÇüÅÂ) */
.id-login-box {
    /* background: #fbfbfb;
    border: 1px solid #ebebeb; */
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
}

/* ÀÎÇ² ½ºÅ¸ÀÏ Á¤µ· */
.id-login-box .loginInput input {
    width: 100%;
    height: 52px;
    border: 1px solid #e2e2e2;
    border-radius: 3rem;
    padding: 0 16px;
    margin-bottom: 12px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #fff;
}
.id-login-box .loginInput input:last-child {
    margin-bottom: 0;
}

/* Ã¼Å©¹Ú½º ¿µ¿ª (¾ÆÀÌµð ÀúÀå µî) */
.id-login-box .loginCheck {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin: 24px 0 24px 0;
    padding-right: 1rem;
    padding-left: 1rem;
}
.id-login-box .loginCheck label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* ·Î±×ÀÎ & Ã£±â ¹öÆ° ±×·ì */
.id-login-box .loginMiddle {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.id-login-box .btn_Red {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f49ca2; /* Ã·ºÎÇØÁÖ½Å ÀÌ¹ÌÁöÀÇ ºÎµå·¯¿î ÇÎÅ©Åæ */
    color: #fff;
    height: 52px;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.id-login-box .btn_White {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #777;
    height: 52px;
    border-radius: 3rem;
    text-decoration: none;
    border: 1px solid #e2e2e2;
    font-size: 14px;
}

/* 2. °¡·Î ±¸ºÐ¼± ½ºÅ¸ÀÏ (Áö±×Àç±× ½ºÅ¸ÀÏ º¥Ä¡¸¶Å·) */
.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: #b5b5b5;
    font-size: 13px;
}
.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ebebeb;
}
.login-divider:not(:empty)::before {
    margin-right: .5em;
}
.login-divider:not(:empty)::after {
    margin-left: .5em;
}

/* 3. ÇÏ´Ü ¿øÇü SNS ·Î±×ÀÎ ¹öÆ° ±×·ì */
.sns-circle-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}
.btn-sns-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%; /* ¿Ïº®ÇÑ ¿øÇü »ý¼º */
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}
.btn-sns-circle:hover {
    transform: scale(1.05);
}
/* Ä«Ä«¿À ¿øÇü ¹öÆ° »ö»ó */
.btn-sns-circle.btn-kakao {
    background-color: #FEE500;
    color: #191919;
}
/* ³×ÀÌ¹ö ¿øÇü ¹öÆ° »ö»ó */
.btn-sns-circle.btn-naver {
    background-color: #03C75A;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

/* 4. ÃÖÇÏ´Ü È¸¿ø°¡ÀÔ ¾È³» */
.loginBottom {
    text-align: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 25px;
}
.loginBottom h4 {
    font-size: 15px;
    margin: 0 0 6px 0;
    color: #333;
}
.loginBottom p {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin: 0 0 16px 0;
}
.loginBottom .btn_Black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
    color: #fff;
    width: 130px;
    height: 40px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
}
/* BASIC css end */

