@charset "UTF-8";

/* --- 1. 공통 레이아웃 --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Malgun Gothic', 'Noto Sans KR', sans-serif; background-color: #e9ecef; }
        a { text-decoration: none; color: inherit; }

        /* 모바일 해상도 기준 래퍼 */
        .mobile-wrapper {
            position: relative;
            width: 100%;
            max-width: 480px;
            min-height: 100vh;
            margin: 0 auto;
            background-color: #3b6dee; /* 로그인 페이지 파란색 배경 */
            overflow-x: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
        }

        /* --- 2. 상단 공통 헤더 --- */
        .header {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 60px;
            background-color: #ffffff;
            border-bottom: 1px solid #ddd;
            position: relative;
            z-index: 5;
        }
        
        .btn-hamburger {
            position: absolute;
            left: 15px;
            font-size: 26px;
            background: none;
            border: none;
            cursor: pointer;
            color: #333;
            padding: 5px;
        }

        .header-title {
            font-size: 18px;
            font-weight: 800;
            color: #333;
            letter-spacing: -0.5px;
        }

        /* --- 3. 로그인 페이지 본문 --- */
        .main-content {
            flex: 1; 
            display: flex;
            justify-content: center;
            align-items: flex-start; /* 중앙 정렬에서 위쪽 정렬로 변경 */
            padding: 15vh 20px 20px; /* 화면 높이의 15%만큼 띄워서 위쪽으로 배치 */
        }

        /* 로그인 정보가 담긴 흰색 종이 영역 */
        .login-box {
            background-color: #FFFFFF;
            padding: 35px 20px 30px; /* 집게가 빠졌으므로 상단 여백 살짝 축소 */
            border-radius: 2px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 340px;
            text-align: center;
            border: 2px solid #ddd;
            position: relative;
        }

        /* 로그인 타이틀 */
        .login-title {
            font-size: 22px;
            font-weight: bold;
            color: #10B981; 
            margin-bottom: 25px;
            position: relative;
        }
        
        /* 위아래 물결선 대체 점선 */
        .login-title::before, .login-title::after {
            content: '';
            display: block;
            width: 100%;
            border-top: 1px dashed #10B981;
            margin: 15px 0;
        }

        .login-message {
            font-size: 15px;
            color: #333;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        /* 폼 영역 */
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 800;
            color: #333;
        }

        .form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            background-color: #f8f9fa;
            font-size: 15px;
            box-sizing: border-box;
        }

        /* 확인 버튼 */
        .btn-confirm {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 30px;
            background-color: #38b76c; 
            color: #FFFFFF;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 30px;
            margin-bottom: 20px;
        }

        .btn-confirm .arrow-icon {
            background-color: rgba(0,0,0,0.15);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
            font-size: 14px;
        }

        /* 하단 링크 */
        .extra-links {
            font-size: 14px;
            color: #333;
            font-weight: bold;
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        