@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #F4F5F7; /* 시스템 내부와 동일한 연한 그레이 */
    color: #333;
    min-height: 100vh;
}

.login-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    padding: 20px 30px;
}

.lang-selector {
    padding: 6px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-size: 13px;
    background-color: #fff;
    cursor: pointer;
}

/* 메인 컨테이너 */
.signup-container {
    flex: 1;
    width: 100%;
    max-width: 600px; /* 로그인 창보다 조금 더 넓게 설정 */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
}

.header-area {
    text-align: center;
    margin-bottom: 40px;
}

.main-logo {
    height: 50px;
    margin-bottom: 20px;
}

.title {
    font-size: 24px;
    font-weight: 700;
    color: #1E2B3C; /* 포인트 다크 네이비 */
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #6B7280;
}

/* 카드 그리드 레이아웃 */
.selection-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

/* 개별 카드 스타일 */
.type-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.type-card:hover {
    border-color: #1E2B3C;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(30, 43, 60, 0.1);
}

/* 아이콘 박스 */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
}

.icon-box.blue { background-color: #EFF6FF; color: #3B82F6; }
.icon-box.orange { background-color: #FFF7ED; color: #F97316; }
.icon-box.navy { background-color: #F1F5F9; color: #1E2B3C; }

.card-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111827;
}

.card-content p {
    font-size: 14px;
    color: #6B7280;
}

.arrow {
    margin-left: auto;
    color: #D1D5DB;
    transition: transform 0.2s;
}

.type-card:hover .arrow {
    transform: translateX(4px);
    color: #1E2B3C;
}

/* 하단 액션 */
.footer-action {
    text-align: center;
}

.back-link {
    text-decoration: none;
    color: #6B7280;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: #1E2B3C;
}

/* 푸터 */
.bottom-footer {
    text-align: center;
    padding: 30px;
    font-size: 13px;
    color: #9CA3AF;
}

.privacy-link {
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
}

/* 반응형: 화면이 아주 작을 때 */
@media (max-width: 480px) {
    .signup-container {
        padding: 20px;
    }
    .type-card {
        padding: 16px;
    }
    .icon-box {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}