/* ============================================================
   login.css — 로그인 페이지 전용 스타일
   ============================================================ */

/* ── 전체 래퍼 ── */
.login-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    max-width: 620px;
    margin: 0 auto;
    background: var(--c-white);
}

/* ── 헤더 ── */
.login-header {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 16px;
    position: relative;
    flex-shrink: 0;
}

.login-header__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--c-text1, #000);
    text-decoration: none;
    flex-shrink: 0;
}

.login-header__title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 17px;
    font-weight: 600;
    color: var(--c-text1, #000);
    pointer-events: none;
}

.login-header__spacer {
    width: 36px;
    flex-shrink: 0;
    margin-left: auto;
}

/* ── 바디 ── */
.login-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 var(--page-px, 24px) 80px;
    gap: 0;
}

/* ── 로고 ── */
.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.login-logo img {
    width: 130px;
    height: auto;
    display: block;
}

/* ── 안내 문구 ── */
.login-tagline {
    font-size: 15px;
    color: var(--c-text1);
    text-align: center;
    line-height: 1.7;
    margin: 0 0 40px;
}

/* ── 카카오 로그인 버튼 ── */
.login-kakao-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 440px;
    height: 54px;
    border-radius: 12px;
    background: #FEE500;
    color: var(--c-text1);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: filter 0.15s;
}

.login-kakao-btn:active {
    filter: brightness(0.93);
}

.login-kakao-btn__icon {
    flex-shrink: 0;
}
