
		html {
		   font-size: initial;
		}


 /* ÄÁÅ×ÀÌ³Ê: °¡·Î 1000px */
        .login-wrapper {
			width: 1000px;


			margin: 0 auto;
			display: flex;
			border: 1px solid #edf0f2;
			border-radius: 12px;
			background-color: #ffffff;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
			overflow: hidden;
			margin-top: 50px;
			margin-bottom: 50px;
        }

        /* ¿ÞÂÊ: ºê·£µå ¼½¼Ç */
        .brand-section {
            flex: 3.5;
            background-color: #fcfcfc;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid #edf0f2;
        }

        .brand-section .logo {
            font-size: 1.2rem;
            font-weight: 800;
            color: #111;
            text-transform: uppercase;
            margin-bottom: 30px;
        }

        .brand-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #111;
            line-height: 1.4;
        }

        .brand-section h2 .highlight {
            color: #ff5a5f;
        }

        /* ¿À¸¥ÂÊ: Æû ¼½¼Ç */
        .form-section {
            flex: 6.5;
            padding: 60px 80px;
            display: flex;
            flex-direction: column;
        }

        /* ÅÇ ¸Þ´º ½ºÅ¸ÀÏ */
        .login-tabs {
            display: flex;
            margin-bottom: 35px;
            border-bottom: 2px solid #f4f6f8;
        }

        .tab-item {
            flex: 1;
            text-align: center;
            padding-bottom: 15px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            color: #bbb;
            transition: all 0.2s ease;
        }

        .tab-item.active {
            color: #111;
            border-bottom: 2px solid #ff5a5f;
            margin-bottom: -2px;
        }

        /* Æû ±×·ì ³ëÃâ Á¦¾î */
        .form-content {
            display: none;
        }

        .form-content.active {
            display: block;
        }

        /* ÀÔ·Â Æû °øÅë ½ºÅ¸ÀÏ */
        .form-group {
            margin-bottom: 15px;
        }

        input[type="text"],
        input[type="password"] {
            width: 100%;
            padding: 15px 18px;
            border: 1px solid #edf0f2;
            border-radius: 8px;
            background-color: #fcfcfc;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            outline: none;
        }

        input[type="text"]:focus,
        input[type="password"]:focus {
            border-color: #ff5a5f;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.05);
        }

        /* ¹öÆ° ½ºÅ¸ÀÏ */
        .btn-submit {
            width: 100%;
            padding: 16px;
            margin-top: 10px;
            border: none;
            border-radius: 8px;
            background-color: #ff5a5f;
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 16px rgba(255, 90, 95, 0.2);
        }

        .btn-submit:hover {
            background-color: #e84f54;
            transform: translateY(-1px);
        }

        /* ¿É¼Ç ¹× ¸µÅ© */
        .options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0 30px 0;
            font-size: 0.85rem;
            color: #888;
        }

        .remember-me {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .remember-me input {
            margin-right: 8px;
            accent-color: #ff5a5f;
        }

        .find-links a {
            text-decoration: none;
            color: #bbb;
        }

        .find-links a:hover {
            color: #ff5a5f;
        }

        /* SNS ·Î±×ÀÎ ¼½¼Ç */
        .sns-login-sep {
            position: relative;
            text-align: center;
            margin: 35px 0 25px 0;
        }

        .sns-login-sep::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #f0f0f0;
        }

        .sns-login-sep span {
            position: relative;
            background-color: #ffffff;
            padding: 0 15px;
            font-size: 0.8rem;
            color: #bbb;
        }

        .sns-login-wrap {
            display: flex;
            gap: 10px;
        }

        .btn-sns {
            flex: 1;
            height: 52px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: opacity 0.2s ease;
        }

        .btn-kakao { background-color: #FEE500; color: #191919; }
        .btn-naver { background-color: #03C75A; color: #ffffff; }

        .btn-sns:hover { opacity: 0.9; }

        .sns-icon { margin-right: 8px; width: 18px; height: 18px; }

        .login-footer {
            margin-top: 35px;
            text-align: center;
            font-size: 0.9rem;
            color: #999;
        }

        .login-footer a {
            color: #ff5a5f;
            text-decoration: none;
            font-weight: 600;
            margin-left: 5px;
        }

        @media (max-width: 820px) {
            .login-wrapper { width: 100%; flex-direction: column; }
            .brand-section, .form-section { flex: none; width: 100%; padding: 40px; }
        }
		
		