
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        body {
            background-color: #f7f9fa;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: 100vh;
            color: #333;
        }

        .container {
            width: 100%;
            max-width: 480px;
            background-color: #ffffff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        /* Header Styles */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            border-bottom: 1.5px solid #eaeaea;
            background-color: #ffffff;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo {
            height: 38px;
            object-fit: contain;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .search-btn {
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #707070;
            transition: background-color 0.2s;
        }

        .search-btn:hover {
            background-color: #f1f5f9;
        }

        .account-btn {
            background-color: #61b15a;
            color: #ffffff;
            border: none;
            border-radius: 20px;
            padding: 8px 18px;
            font-size: 13.5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .account-btn:hover {
            background-color: #4fa048;
        }

        /* Form Area */
        .login-box {
            padding: 24px 20px 10px 20px;
            display: flex;
            flex-direction: column;
        }

        .close-row {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 15px;
        }

        .close-btn {
            background: none;
            border: none;
            color: #707070;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .form-group {
            margin-bottom: 16px;
            position: relative;
        }

        .form-group input {
            width: 100%;
            padding: 15px 16px;
            border: 1.5px solid #dcdcdc;
            border-radius: 8px;
            font-size: 16px;
            color: #333;
            outline: none;
            background-color: #ffffff;
            transition: all 0.2s ease;
        }

        .form-group input::placeholder {
            color: #a0a0a0;
        }

        .form-group input:focus {
            border-color: #7cb342;
            box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.15);
        }

        .submit-btn {
            width: 100%;
            background-color: #82c373;
            color: #ffffff;
            border: none;
            border-radius: 6px;
            padding: 15px;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            margin-top: 5px;
            margin-bottom: 25px;
            transition: background-color 0.3s ease;
        }

        .submit-btn:disabled {
            background-color: #a3d996;
            cursor: not-allowed;
            opacity: 0.85;
        }

        .recover-link {
            color: #4fa048;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: color 0.2s;
            margin-bottom: 25px;
            display: inline-block;
        }

        .recover-link:hover {
            color: #3e8038;
            text-decoration: underline;
        }

        /* Cookie banner style in screenshot */
        .cookie-banner {
            background-color: #f4f6f8;
            border-top: 1px solid #eaeaea;
            border-bottom: 1px solid #eaeaea;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: #555555;
            line-height: 1.4;
        }

        .cookie-banner a {
            color: #4fa048;
            text-decoration: underline;
            font-weight: 600;
        }

        .cookie-btn {
            background-color: #ffffff;
            border: 1px solid #dcdcdc;
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 600;
            color: #333;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        /* Security Overlay */
        #security-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: #000;
            color: #0f0;
            font-family: monospace;
            z-index: 999999;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
        }