/* login.css - 아테나 힐링정원 다크블루 & 골드 포인트 로그인 스타일 */
:root {
    --bg-dark: #0f172a;
    --card-bg: #131c31; 
    --primary-gold: #eab308; /* 골드 포인트 */
    --primary-gold-hover: #ca8a04;
    --text-white: #f8fafc;
    --text-muted: #64748b;
    --border-color: #334155;
}

body {
    margin: 0; 
    padding: 0; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    align-items: center; 
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 헤더 및 푸터 영역 결제 페이지와 연동 */
#header, #footer {
    width: 100%;
}

/* 컨텐츠 중앙 정렬 래퍼 */
.login-main-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 16px; /* 모바일 패딩 축소 */
    box-sizing: border-box;
}

.login-box { 
    background-color: var(--card-bg);
    padding: 24px 24px; /* 카드 내부 여백 축소 */
    border-radius: 20px; 
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    text-align: center; 
    width: 380px; 
    box-sizing: border-box; 
    border: 1px solid #1e293b;
    animation: fadeIn 0.6s ease-in-out;
}

/* 상단 로고 및 브랜딩 영역 */
.brand-Header-Area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.brand-Header-Area .owl-img {
    width: 48px; /* 로고 크기 축소 */
    height: 48px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(234, 179, 8, 0.15));
}

/* 깔끔한 화이트 타이틀 + 골드 포인트 아이콘 및 밑줄 장식 */
h2.login-title { 
    color: var(--text-white);
    margin-bottom: 8px; 
    font-size: 1.35rem; /* 폰트 크기 약간 축소 */
    font-weight: 700;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

h2.login-title i {
    color: var(--primary-gold);
    font-size: 1.15rem;
}

.title-divider {
    height: 2px;
    width: 60px;
    background-color: var(--primary-gold);
    margin: 0 auto 16px auto; /* 구분선 아래 여백 축소 */
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(234, 179, 8, 0.3);
}

/* 슬로건 3번 문구 적용 및 골드 테두리 박스 강조 */
.slogan-box {
    background-color: #0b111e;
    border-radius: 12px;
    padding: 12px 16px; /* 슬로건 안쪽 여백 축소 */
    margin-bottom: 20px; /* 아래 여백 축소 */
    text-align: center;
    font-size: 0.9rem; /* 폰트 크기 약간 축소 */
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: -0.01em;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.12);
    line-height: 1.4;
}

.slogan-sub {
    display: block;
    font-size: 0.8rem; /* 서브 폰트 크기 축소 */
    font-weight: 500; 
    color: #94a3b8;
    margin-top: 6px;
}

/* 카카오 로그인 버튼 강조 스타일링 */
#kakao-login-btn { 
    display: block; 
    width: 100%; 
    height: auto;
    border-radius: 12px;
    cursor: pointer; 
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

#kakao-login-btn:hover { 
    opacity: 0.95;
    transform: translateY(-2px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 20px -5px rgba(234, 179, 8, 0.3);
}

#kakao-login-btn:active {
    transform: scale(0.98);
}

/* 상태 메시지 */
.status-msg { 
    margin-top: 16px; /* 위 여백 축소 */
    font-size: 0.85rem; 
    color: var(--text-muted); 
    min-height: 20px; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .login-box {
        width: 100%;
        margin: 0 16px;
        padding: 24px 16px; /* 모바일 화면 패딩 추가 축소 */
    }
}